home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 (Developer)…68k, x86, SPARC, PA-RISC] / NeXTSTEP 3.3 Dev Intel.iso / NextDeveloper / Source / GNU / cc / objc-act.c < prev    next >
C/C++ Source or Header  |  1995-01-27  |  235KB  |  8,486 lines

  1. /* Implement classes and message passing for Objective C.
  2.    Copyright (C) 1992, 1993 Free Software Foundation, Inc.
  3.    Author: Steve Naroff.
  4.  
  5. This file is part of GNU CC.
  6.  
  7. GNU CC is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2, or (at your option)
  10. any later version.
  11.  
  12. GNU CC is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with GNU CC; see the file COPYING.  If not, write to
  19. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  20.  
  21. /* Purpose: This module implements the Objective-C 4.0 language.
  22.  
  23.    compatibility issues (with the Stepstone translator):
  24.  
  25.    - does not recognize the following 3.3 constructs.
  26.      @requires, @classes, @messages, = (...)
  27.    - methods with variable arguments must conform to ANSI standard.
  28.    - tagged structure definitions that appear in BOTH the interface
  29.      and implementation are not allowed.
  30.    - public/private: all instance variables are public within the
  31.      context of the implementation...I consider this to be a bug in
  32.      the translator.
  33.    - statically allocated objects are not supported. the user will
  34.      receive an error if this service is requested.
  35.  
  36.    code generation `options':
  37.  
  38.    - OBJC_INT_SELECTORS  */
  39.  
  40. #include <stdio.h>
  41. #include "config.h"
  42. #include "tree.h"
  43. #include "flags.h"
  44.  
  45. #ifdef OBJCPLUS
  46. #include "cp-tree.h"
  47. #include "cp-lex.h"
  48. #else
  49. #include "c-tree.h"
  50. #include "c-lex.h"
  51. #endif
  52.  
  53. #include "objc-act.h"
  54.  
  55. #include "input.h"
  56. #include "function.h"
  57.  
  58.  
  59. /* This is the default way of generating a method name.  */
  60. /* I am not sure it is really correct.
  61.    Perhaps there's a danger that it will make name conflicts
  62.    if method names contain underscores. -- rms.  */
  63. #ifndef OBJC_GEN_METHOD_LABEL
  64. #define OBJC_GEN_METHOD_LABEL(BUF, IS_INST, CLASS_NAME, CAT_NAME, SEL_NAME, NUM) \
  65.   do {                        \
  66.     char *temp;                    \
  67.     sprintf ((BUF), "_%s_%s_%s_%s",        \
  68.          ((IS_INST) ? "i" : "c"),        \
  69.          (CLASS_NAME),            \
  70.          ((CAT_NAME)? (CAT_NAME) : ""), \
  71.          (SEL_NAME));            \
  72.     for (temp = (BUF); *temp; temp++)        \
  73.       if (*temp == ':') *temp = '_';        \
  74.   } while (0)
  75. #endif
  76.  
  77. /* These need specifying.  */
  78. #ifndef OBJC_FORWARDING_STACK_OFFSET
  79. #define OBJC_FORWARDING_STACK_OFFSET 0
  80. #endif
  81.  
  82. #ifndef OBJC_FORWARDING_MIN_OFFSET
  83. #define OBJC_FORWARDING_MIN_OFFSET 0
  84. #endif
  85.  
  86. /* Define the special tree codes that we use.  */
  87.  
  88. /* Table indexed by tree code giving a string containing a character
  89.    classifying the tree code.  Possibilities are
  90.    t, d, s, c, r, <, 1 and 2.  See objc-tree.def for details.  */
  91.  
  92. #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
  93.  
  94. char *objc_tree_code_type[] = {
  95.   "x",
  96. #include "objc-tree.def"
  97. };
  98. #undef DEFTREECODE
  99.  
  100. /* Table indexed by tree code giving number of expression
  101.    operands beyond the fixed part of the node structure.
  102.    Not used for types or decls.  */
  103.  
  104. #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
  105.  
  106. int objc_tree_code_length[] = {
  107.   0,
  108. #include "objc-tree.def"
  109. };
  110. #undef DEFTREECODE
  111.  
  112. /* Names of tree components.
  113.    Used for printing out the tree and error messages.  */
  114. #define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
  115.  
  116. char *objc_tree_code_name[] = {
  117.   "@@dummy",
  118. #include "objc-tree.def"
  119. };
  120. #undef DEFTREECODE
  121.  
  122. /* Set up for use of obstacks.  */
  123.  
  124. #include "obstack.h"
  125.  
  126. #define obstack_chunk_alloc xmalloc
  127. #define obstack_chunk_free free
  128.  
  129. /* This obstack is used to accumulate the encoding of a data type.  */
  130. static struct obstack util_obstack;
  131. /* This points to the beginning of obstack contents,
  132.    so we can free the whole contents.  */
  133. char *util_firstobj;
  134.  
  135. /* for encode_method_def */
  136. #include "rtl.h"
  137.  
  138. #ifdef OBJCPLUS
  139. #include "obcp-parse.h"
  140. #else
  141. #include "objc-parse.h"
  142. #endif
  143.  
  144. #define OBJC_VERSION    5
  145. #define PROTOCOL_VERSION 2
  146.  
  147. #define NULLT    (tree) 0
  148.  
  149. #define OBJC_ENCODE_INLINE_DEFS     0
  150. #define OBJC_ENCODE_DONT_INLINE_DEFS    1
  151.  
  152. #ifdef OBJCPLUS
  153.  
  154. /* from cp-decl.c */
  155. extern tree make_anon_name         PROTO((void));
  156. extern tree const_string_type_node;
  157.  
  158. /* Hacks to simulate start_struct() and finish_struct(). */
  159.  
  160. static int cplus_struct_hack = 0;
  161.  
  162. static tree 
  163. objcplus_start_struct (code, name)
  164.      enum tree_code code; 
  165.      tree name;
  166.   tree s = xref_tag (record_type_node, name ? name : make_anon_name (), 0);
  167.   
  168.   /* simulate `LC' production */
  169.   int temp = allocation_temporary_p ();
  170.   int momentary = suspend_momentary ();
  171.  
  172.   if (temp)
  173.     end_temporary_allocation ();
  174.   cplus_struct_hack = (momentary << 1) | temp;
  175.   pushclass (s, 0); 
  176.  
  177.   return s;    
  178. }
  179.  
  180. static tree 
  181. objcplus_finish_struct (t, fieldlist)
  182.      tree t; 
  183.      tree fieldlist;
  184. {
  185.   tree fieldlist_list = build_tree_list ((tree) visibility_default, fieldlist);
  186.   tree s = finish_struct (t, fieldlist_list, 0);
  187.  
  188.   if (cplus_struct_hack & 1)
  189.     resume_temporary_allocation ();
  190.   if (cplus_struct_hack & 2)
  191.     resume_momentary (1);
  192.  
  193.   return s;
  194. }
  195.  
  196. static void
  197. objcplus_finish_function (nested)
  198.      int nested;
  199. {
  200.   /* C++ finish_decl allows you to specify if it should poplevel... */
  201.   finish_function (lineno, 1);
  202. }
  203.  
  204. extern tree groktypename_in_parm_context         PROTO ((tree));
  205.  
  206. static void
  207. objcplus_finish_decl (decl, init, asmspec)
  208.      tree decl, init, asmspec;
  209. {
  210.   /* C++ finish_decl allows you to specify if it should pop_obstacks... */
  211.   finish_decl (decl, init, asmspec, 1);
  212. }
  213.  
  214. static tree
  215. objcplus_lookup_name (name)
  216.      tree name;
  217. {
  218.   return lookup_name (name, -1);
  219. }
  220.  
  221. static tree
  222. lookup_name_type (name)
  223.      tree name;
  224. {
  225.   return lookup_name (name, 1);
  226. }
  227.  
  228. /* Hacks to simulate push_parm_decl() and objcplus_get_parm_info(). */
  229.  
  230. static tree objcplus_parmlist = NULLT;
  231.  
  232. tree
  233. objcplus_push_parm_decl (parm)
  234.      tree parm;
  235. {
  236.   if (objcplus_parmlist)
  237.     objcplus_parmlist = chainon (objcplus_parmlist, build_tree_list (0, parm));
  238.   else
  239.     objcplus_parmlist = build_tree_list (0, parm);
  240.  
  241.   return objcplus_parmlist;
  242. }
  243.  
  244. static tree 
  245. objcplus_get_parm_info (void_at_end) 
  246.      int void_at_end;
  247. {
  248.   tree parm_info = objcplus_parmlist;
  249.   
  250.   TREE_PARMLIST (parm_info) = 1;
  251.  
  252.   if (void_at_end)
  253.     chainon (parm_info, void_list_node);
  254.  
  255.   objcplus_parmlist = NULLT;
  256.  
  257.   return parm_info;
  258. }
  259.  
  260. static tree 
  261. objcplus_type_name (type)
  262.      tree type;
  263. {
  264.   if (TYPE_NAME (type) && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL)
  265.     return DECL_NAME (TYPE_NAME (type));
  266.   else
  267.     return TYPE_NAME (type);
  268. }
  269.  
  270. static tree 
  271. objcplus_type_size (type)
  272.      tree type;
  273. {
  274.   tree size = TYPE_SIZE (type);
  275.   if (size == NULL_TREE)
  276.     {
  277.       warning ("Requesting size of incomplete type `%s'",
  278.            IDENTIFIER_POINTER (objcplus_type_name (type)));
  279.       layout_type (type);
  280.       size = TYPE_SIZE (type);
  281.     }
  282.   return build_int_2 (TREE_INT_CST_LOW (size), 0);
  283. }
  284.  
  285. /* Macros to cover functions with changed interfaces. */
  286.  
  287. #define lookup_name(name) objcplus_lookup_name (name)
  288.  
  289. #define start_struct(code, name) objcplus_start_struct (code, name)
  290.  
  291. #define finish_decl(decl, init, asmspec) \
  292.       objcplus_finish_decl (decl, init, asmspec)
  293.  
  294. #define finish_function(nested) objcplus_finish_function(nested)
  295.  
  296. #define finish_struct(code, name) objcplus_finish_struct (code, name)
  297.  
  298. #define start_function(declspecs, declarator, nested) \
  299.   start_function (declspecs, declarator, NULLT, 0)
  300.  
  301. #define xref_tag(code, name) xref_tag (record_type_node, name, 0)
  302.  
  303. #define pushlevel(tag_transparent) /* noop */
  304.  
  305. #define poplevel(keep, reverse, functionbody) /* noop */
  306.  
  307. #define push_parm_decl(parm) objcplus_push_parm_decl (parm)
  308.  
  309. #define get_parm_info(void_at_end) objcplus_get_parm_info (void_at_end)
  310.  
  311. #define grokfield(filename, line, declarator, declspecs, width) \
  312.          ((width) ? grokbitfield (declarator, declspecs, width) \
  313.                   : grokfield (declarator, declspecs, width, 0, 0))
  314.  
  315. #define build_component_ref(datum, component) \
  316.         build_component_ref (datum, component, NULLT, 1)
  317.  
  318. #define comptypes(type1, type2) comptypes (type1, type2, 0)
  319.  
  320. #define start_decl(declarator, declspecs, spspecs) \
  321.   start_decl (declarator, declspecs, spspecs, NULLT)
  322.  
  323. #undef TYPE_NAME
  324. #define TYPE_NAME(NODE) objcplus_type_name (NODE)
  325.  
  326. #undef TYPE_SIZE
  327. #define TYPE_SIZE(NODE) objcplus_type_size (NODE)
  328.  
  329. extern tree define_function PROTO((char*, tree, enum built_in_function, void(*)(),
  330.                            char*));
  331.  
  332.  
  333. #define builtin_function(NAME, TYPE, CODE, LIBNAME) \
  334.   define_function (NAME, TYPE, CODE, (void (*)())pushdecl, LIBNAME)
  335.  
  336. #endif /* OBJCPLUS */
  337.  
  338.  
  339.  
  340. /*** Private Interface (procedures) ***/
  341.  
  342. /* used by compile_file */
  343.  
  344. static void init_objc                PROTO((void));
  345. static void finish_objc                PROTO((void));
  346.  
  347. /* code generation */
  348.  
  349. tree is_class_name                 PROTO((tree));
  350.  
  351. static void synth_module_prologue        PROTO((void));
  352. static tree build_constructor            PROTO((tree, tree));
  353. static char *build_module_descriptor        PROTO((void));
  354. static tree init_module_descriptor        PROTO((tree));
  355. static tree build_objc_method_call        PROTO((int, tree, tree, tree, tree, tree));
  356. static void generate_strings            PROTO((void));
  357. static void build_selector_translation_table    PROTO((void));
  358. static tree build_ivar_chain            PROTO((tree, int));
  359.  
  360. static tree build_ivar_template            PROTO((void));
  361. static tree build_method_template        PROTO((void));
  362. static tree build_private_template        PROTO((tree));
  363. static void build_class_template        PROTO((void));
  364. static void build_selector_template        PROTO((void));
  365. static void build_category_template        PROTO((void));
  366. static tree build_super_template        PROTO((void));
  367. static tree build_category_initializer        PROTO((tree, tree, tree, tree, tree, tree));
  368. static tree build_protocol_initializer        PROTO((tree, tree, tree, tree, tree));
  369.  
  370. static void synth_forward_declarations        PROTO((void));
  371. static void generate_ivar_lists            PROTO((void));
  372. static void generate_dispatch_tables        PROTO((void));
  373. static void generate_shared_structures        PROTO((void));
  374. static tree generate_protocol_list        PROTO((tree));
  375. static void generate_forward_declaration_to_string_table PROTO((void));
  376. static void build_protocol_reference        PROTO((tree));
  377.  
  378. static tree init_selector            PROTO((int));
  379. static tree build_keyword_selector        PROTO((tree));
  380. static tree synth_id_with_class_suffix        PROTO((char *, tree));
  381.  
  382.  
  383. /* from expr.c */
  384. extern int apply_args_register_offset           PROTO((int));
  385.  
  386. /* misc. bookkeeping */
  387.  
  388. typedef struct hashed_entry     *hash;
  389. typedef struct hashed_attribute  *attr;
  390.  
  391. struct hashed_attribute
  392. {
  393.   attr next;
  394.   tree value;
  395. };
  396. struct hashed_entry
  397. {
  398.   attr list;
  399.   hash next;
  400.   tree key;
  401. };
  402.  
  403. static void hash_init                PROTO((void));
  404. static void hash_enter                PROTO((hash *, tree));
  405. static hash hash_lookup                PROTO((hash *, tree));
  406. static void hash_add_attr            PROTO((hash, tree));
  407. static tree lookup_method            PROTO((tree, tree));
  408. static tree lookup_instance_method_static    PROTO((tree, tree));
  409. static tree lookup_class_method_static        PROTO((tree, tree));
  410. static tree add_class                PROTO((tree));
  411. static void add_category            PROTO((tree, tree));
  412.  
  413. enum string_section
  414. {
  415.   class_names,        /* class, category, protocol, module names */
  416.   meth_var_names,    /* method and variable names */
  417.   meth_var_types    /* method and variable type descriptors */
  418. };
  419.  
  420. static tree add_objc_string            PROTO((tree, enum string_section));
  421. static tree build_objc_string_decl        PROTO((tree, enum string_section));
  422. static tree build_selector_reference_decl    PROTO((tree));
  423.  
  424. /* protocol additions */
  425.  
  426. static tree add_protocol            PROTO((tree));
  427. static tree lookup_protocol            PROTO((tree));
  428. static tree lookup_and_install_protocols    PROTO((tree));
  429.  
  430. /* type encoding */
  431.  
  432. static void encode_type_qualifiers        PROTO((tree));
  433. static void encode_pointer            PROTO((tree, int, int));
  434. static void encode_array            PROTO((tree, int, int));
  435. static void encode_aggregate            PROTO((tree, int, int));
  436. static void encode_bitfield            PROTO((int, int));
  437. static void encode_type                PROTO((tree, int, int));
  438. static void encode_field_decl            PROTO((tree, int, int));
  439.  
  440. static void really_start_method            PROTO((tree, tree));
  441. static int comp_method_with_proto        PROTO((tree, tree));
  442. static int comp_proto_with_proto        PROTO((tree, tree));
  443. static tree get_arg_type_list            PROTO((tree, int, int));
  444. static tree expr_last                PROTO((tree));
  445.  
  446. /* utilities for debugging and error diagnostics: */
  447.  
  448. static void warn_with_method            PROTO((char *, int, tree));
  449. static void error_with_ivar            PROTO((char *, tree, tree));
  450. static char *gen_method_decl            PROTO((tree, char *));
  451. static char *gen_declaration            PROTO((tree, char *));
  452. static char *gen_declarator            PROTO((tree, char *, char *));
  453. static int is_complex_decl            PROTO((tree));
  454. static void adorn_decl                PROTO((tree, char *));
  455. static void dump_interface            PROTO((FILE *, tree));
  456.  
  457. /* everything else. */
  458.  
  459. static void objc_fatal                PROTO((void));
  460. static tree define_decl                PROTO((tree, tree));
  461. static tree lookup_method_in_protocol_list    PROTO((tree, tree, int));
  462. static tree lookup_protocol_in_reflist        PROTO((tree, tree));
  463. static tree create_builtin_decl            PROTO((enum tree_code, tree, char *));
  464. static tree my_build_string            PROTO((int, char *));
  465. static void build_objc_symtab_template        PROTO((void));
  466. static tree init_def_list            PROTO((tree));
  467. static tree init_objc_symtab            PROTO((tree));
  468. static void forward_declare_categories        PROTO((void));
  469. static void generate_objc_symtab_decl        PROTO((void));
  470. static tree build_selector            PROTO((tree));
  471. static tree build_msg_pool_reference        PROTO((int));
  472. static tree build_typed_selector_reference         PROTO((tree, tree));
  473. static tree build_selector_reference        PROTO((tree));
  474. static tree build_class_reference_decl        PROTO((tree));
  475. static void add_class_reference            PROTO((tree));
  476. static tree objc_copy_list            PROTO((tree, tree *));
  477. static tree build_protocol_template        PROTO((void));
  478. static tree build_descriptor_table_initializer    PROTO((tree, tree));
  479. static tree build_method_prototype_list_template PROTO((tree, int));
  480. static tree build_method_prototype_template    PROTO((void));
  481. static int forwarding_offset            PROTO((tree));
  482. static tree encode_method_prototype        PROTO((tree, tree));
  483. static tree generate_descriptor_table        PROTO((tree, char *, int, tree, tree));
  484. static void generate_method_descriptors        PROTO((tree));
  485. static tree build_tmp_function_decl        PROTO((void));
  486. static void hack_method_prototype        PROTO((tree, tree));
  487. static void generate_protocol_references    PROTO((tree));
  488. static void generate_protocols            PROTO((void));
  489. static void check_ivars                PROTO((tree, tree));
  490. static tree build_ivar_list_template        PROTO((tree, int));
  491. static tree build_method_list_template        PROTO((tree, int));
  492. static tree build_ivar_list_initializer        PROTO((tree, tree));
  493. static tree generate_ivars_list            PROTO((tree, char *, int, tree));
  494. static tree build_dispatch_table_initializer    PROTO((tree, tree));
  495. static tree generate_dispatch_table        PROTO((tree, char *, int, tree));
  496. static tree build_shared_structure_initializer    PROTO((tree, tree, tree, tree, tree, int, tree, tree, tree));
  497. static void generate_category            PROTO((tree));
  498. static int is_objc_type_qualifier        PROTO((tree));
  499. static tree adjust_type_for_id_default        PROTO((tree, int));
  500. static tree check_duplicates            PROTO((hash));
  501. static tree receiver_is_class_object        PROTO((tree));
  502. static int check_methods            PROTO((tree, tree, int));
  503. static int conforms_to_protocol            PROTO((tree, tree));
  504. static void check_protocols            PROTO((tree, char *, char *));
  505. static tree encode_method_def            PROTO((tree));
  506. static void gen_declspecs            PROTO((tree, char *, int));
  507. static void generate_classref_translation_entry    PROTO((tree));
  508. static void handle_class_ref            PROTO((tree));
  509.  
  510. /*** Private Interface (data) ***/
  511.  
  512. /* reserved tag definitions: */
  513.  
  514. #define TYPE_ID            "id"
  515. #define TAG_OBJECT        "objc_object"
  516. #define TAG_CLASS        "objc_class"
  517. #define TAG_SUPER        "objc_super"
  518. #define TAG_SELECTOR        "objc_selector"
  519.  
  520. #define UTAG_CLASS        "_objc_class"
  521. #define UTAG_IVAR        "_objc_ivar"
  522. #define UTAG_IVAR_LIST        "_objc_ivar_list"
  523. #define UTAG_METHOD        "_objc_method"
  524. #define UTAG_METHOD_LIST    "_objc_method_list"
  525. #define UTAG_CATEGORY        "_objc_category"
  526. #define UTAG_MODULE        "_objc_module"
  527. #define UTAG_SYMTAB        "_objc_symtab"
  528. #define UTAG_SUPER        "_objc_super"
  529. #define UTAG_SELECTOR        "_objc_selector"
  530.  
  531. #define UTAG_PROTOCOL        "_objc_protocol"
  532. #define UTAG_PROTOCOL_LIST    "_objc_protocol_list"
  533. #define UTAG_METHOD_PROTOTYPE    "_objc_method_prototype"
  534. #define UTAG_METHOD_PROTOTYPE_LIST "_objc__method_prototype_list"
  535.  
  536. #define STRING_OBJECT_CLASS_NAME "NXConstantString"
  537. #define PROTOCOL_OBJECT_CLASS_NAME "Protocol"
  538.  
  539. static char* TAG_GETCLASS;
  540. static char* TAG_GETMETACLASS;
  541. static char* TAG_MSGSEND;
  542. static char* TAG_MSGSENDSUPER;
  543. static char* TAG_EXECCLASS;
  544.  
  545. /* Set by `continue_class' and checked by `is_public'.  */
  546.  
  547. #define TREE_STATIC_TEMPLATE(record_type) (TREE_PUBLIC (record_type))
  548. #define TYPED_OBJECT(type) \
  549.        (TREE_CODE (type) == RECORD_TYPE && TREE_STATIC_TEMPLATE (type))
  550.  
  551. /* Some commonly used instances of "identifier_node".  */
  552.  
  553. static tree self_id, ucmd_id;
  554.  
  555. static tree self_decl, umsg_decl, umsg_super_decl;
  556. static tree objc_get_class_decl, objc_get_meta_class_decl;
  557.  
  558. static tree super_type, selector_type, id_type, objc_class_type;
  559. static tree instance_type, protocol_type;
  560.  
  561. /* Type checking macros.  */
  562.  
  563. #define IS_ID(TYPE) \
  564.   (TYPE_MAIN_VARIANT (TYPE) == TYPE_MAIN_VARIANT (id_type))
  565. #define IS_PROTOCOL_QUALIFIED_ID(TYPE) \
  566.   (IS_ID (TYPE) && TYPE_PROTOCOL_LIST (TYPE))
  567. #define IS_SUPER(TYPE) \
  568.   (super_type && TYPE_MAIN_VARIANT (TYPE) == TYPE_MAIN_VARIANT (super_type))
  569.  
  570. static tree class_chain = NULLT;
  571. static tree alias_chain = NULLT;
  572. static tree interface_chain = NULLT;
  573. static tree protocol_chain = NULLT;
  574.  
  575. /* chains to manage selectors that are referenced and defined in the module */
  576.  
  577. static tree cls_ref_chain = NULLT;    /* classes referenced */
  578. static tree sel_ref_chain = NULLT;    /* selectors referenced */
  579.  
  580. /* chains to manage uniquing of strings */
  581.  
  582. static tree class_names_chain = NULLT;
  583. static tree meth_var_names_chain = NULLT;
  584. static tree meth_var_types_chain = NULLT;
  585.  
  586. /* hash tables to manage the global pool of method prototypes */
  587.  
  588. static hash *nst_method_hash_list = 0;
  589. static hash *cls_method_hash_list = 0;
  590.  
  591. /* backend data declarations */
  592.  
  593. static tree UOBJC_SYMBOLS_decl;
  594. static tree UOBJC_INSTANCE_VARIABLES_decl, UOBJC_CLASS_VARIABLES_decl;
  595. static tree UOBJC_INSTANCE_METHODS_decl, UOBJC_CLASS_METHODS_decl;
  596. static tree UOBJC_CLASS_decl, UOBJC_METACLASS_decl;
  597. static tree UOBJC_SELECTOR_TABLE_decl = 0;
  598. static tree UOBJC_MODULES_decl;
  599. static tree UOBJC_STRINGS_decl;
  600.  
  601. /* The following are used when compiling a class implementation.
  602.    implementation_template will normally be an interface, however if
  603.    none exists this will be equal to implementation_context...it is
  604.    set in start_class.  */
  605.  
  606. static tree implementation_context = NULLT,
  607.         implementation_template = NULLT;
  608.  
  609. extern tree objc_implementation_context;
  610.  
  611. struct imp_entry
  612. {
  613.   struct imp_entry *next;
  614.   tree imp_context;
  615.   tree imp_template;
  616.   tree class_decl;        /* _OBJC_CLASS_<my_name>; */
  617.   tree meta_decl;        /* _OBJC_METACLASS_<my_name>; */
  618. };
  619.  
  620. static void handle_impent            PROTO((struct imp_entry *));
  621.  
  622. static struct imp_entry *imp_list = 0;
  623. static int imp_count = 0;    /* `@implementation' */
  624. static int cat_count = 0;    /* `@category' */
  625.  
  626. static tree objc_class_template, objc_category_template, uprivate_record;
  627. static tree objc_protocol_template, objc_selector_template;
  628. static tree ucls_super_ref, uucls_super_ref;
  629.  
  630. static tree objc_method_template, objc_ivar_template;
  631. static tree objc_symtab_template, objc_module_template;
  632. static tree objc_super_template, objc_object_reference;
  633.  
  634. static tree objc_object_id, objc_class_id, objc_id_id;
  635. static tree constant_string_id;
  636. static tree constant_string_type;
  637. static tree UOBJC_SUPER_decl;
  638.  
  639. static tree method_context = NULLT;
  640. static int  method_slot = 0;    /* used by start_method_def */
  641.  
  642. #define BUFSIZE        1024
  643.  
  644. static char *errbuf;    /* a buffer for error diagnostics */
  645.  
  646. /* data imported from tree.c */
  647.  
  648. extern struct obstack permanent_obstack,
  649.     *current_obstack, *rtl_obstack, *expression_obstack;
  650. extern enum debug_info_type write_symbols;
  651.  
  652. /* data imported from toplev.c  */
  653.  
  654. extern char *dump_base_name;
  655.  
  656. /* Generate code for GNU or NeXT runtime environment.  */
  657.  
  658. #ifdef NEXT_OBJC_RUNTIME
  659. int flag_next_runtime = 1;
  660. #else
  661. int flag_next_runtime = 0;
  662. #endif
  663.  
  664. extern int flag_dave_indirect;
  665.  
  666. int flag_selector_table;
  667.  
  668. int flag_typed_selectors;
  669.  
  670. /* Open and close the file for outputting class declarations, if requested.  */
  671.  
  672. int flag_gen_declaration = 0;
  673.  
  674. FILE *gen_declaration_file;
  675.  
  676. /* Warn if multiple methods are seen for the same selector, but with
  677.    different argument types. */
  678.  
  679. int warn_selector = 0;
  680.  
  681. /* Warn if methods required by a protocol are not implemented in the 
  682.    class adopting it.  When turned off, methods inherited to that
  683.    class are also considered implemented */
  684.  
  685. int flag_warn_protocol = 1;
  686.  
  687. /* tells "encode_pointer/encode_aggregate" whether we are generating
  688.    type descriptors for instance variables (as opposed to methods).
  689.    Type descriptors for instance variables contain more information
  690.    than methods (for static typing and embedded structures). This
  691.    was added to support features being planned for dbkit2. */
  692.  
  693. static int generating_instance_variables = 0;
  694.  
  695. /* for use with extern "objective-c" { ... } */
  696.  
  697. #ifdef OBJCPLUS
  698. extern tree lang_name_objc;
  699. #endif
  700.  
  701. #ifdef OBJCPLUS
  702. void objc_lang_init ()
  703. #else
  704. void lang_init ()
  705. #endif
  706. {
  707. #ifndef OBJCPLUS
  708.   /* the beginning of the file is a new line; check for # */
  709.   /* With luck, we discover the real source file's name from that
  710.      and put it in input_filename.  */
  711.   ungetc (check_newline (), finput);
  712. #endif
  713.  
  714.   /* If gen_declaration desired, open the output file.  */
  715.   if (flag_gen_declaration)
  716.     {
  717.       int dump_base_name_length = strlen (dump_base_name);
  718.       register char *dumpname = (char *) xmalloc (dump_base_name_length + 7);
  719.       strcpy (dumpname, dump_base_name);
  720.       strcat (dumpname, ".decl");
  721.       gen_declaration_file = fopen (dumpname, "w");
  722.       if (gen_declaration_file == 0)
  723.     pfatal_with_name (dumpname);
  724.     }
  725.  
  726.   if (flag_next_runtime)
  727.     {
  728.       TAG_GETCLASS = "objc_getClass";
  729.       TAG_GETMETACLASS = "objc_getMetaClass";
  730.       TAG_MSGSEND = "objc_msgSend";
  731.       TAG_MSGSENDSUPER = "objc_msgSendSuper";
  732.       TAG_EXECCLASS = "__objc_execClass";
  733. #ifdef NEXT_PDO
  734.       flag_selector_table = 1;
  735. #else
  736.       flag_selector_table = 0;
  737. #endif
  738.     }
  739.   else
  740.     {
  741.       TAG_GETCLASS = "objc_get_class";
  742.       TAG_GETMETACLASS = "objc_get_meta_class";
  743.       TAG_MSGSEND = "objc_msg_lookup";
  744.       TAG_MSGSENDSUPER = "objc_msg_lookup_super";
  745.       TAG_EXECCLASS = "__objc_exec_class";
  746.       flag_selector_table = 1;
  747.       flag_typed_selectors = 1;
  748.     }
  749.  
  750. #ifndef OBJCPLUS
  751.   if (doing_objc_thang)
  752. #else
  753.     doing_objc_thang = 1;
  754. #endif
  755.     init_objc ();
  756. }
  757.  
  758. #ifdef OBJCPLUS
  759. int doing_objc_thang;
  760. #endif
  761.  
  762. static void
  763. objc_fatal ()
  764. {
  765. #ifdef OBJCPLUS
  766.   fatal ("Objective-C text in C++ source file: use -lang-objc++");
  767. #else /* OBJCPLUS */
  768.   fatal ("Objective-C text in C source file: use -lang-objc");
  769. #endif
  770. }
  771.  
  772. void
  773. objc_finish ()
  774. {
  775.   if (doing_objc_thang)
  776.     finish_objc ();        /* Objective-C finalization */
  777.  
  778.   if (gen_declaration_file)
  779.     fclose (gen_declaration_file);
  780. }
  781.  
  782. void
  783. #ifdef OBJCPLUS
  784. objc_lang_finish ()
  785. #else
  786.      lang_finish ()
  787. #endif
  788. {
  789. }
  790.  
  791. #ifndef OBJCPLUS
  792. char *
  793. lang_identify ()
  794. {
  795.   return "objc";
  796. }
  797. #endif
  798.  
  799. int
  800. lang_decode_option (p)
  801.      char *p;
  802. {
  803.   if (!strcmp (p, "-fobjc")
  804. #ifdef NEXT_SEMANTICS
  805.       || !strcmp (p, "-ObjC")
  806.       || !strcmp (p, "-ObjC++")
  807. #endif
  808.       )
  809.     doing_objc_thang = 1;
  810.   else if (!strcmp (p, "-fgen-decls"))
  811.     flag_gen_declaration = 1;
  812.   else if (!strcmp (p, "-Wselector"))
  813.     warn_selector = 1;
  814.   else if (!strcmp (p, "-Wno-selector"))
  815.     warn_selector = 0;
  816.   else if (!strcmp (p, "-Wprotocol"))
  817.     flag_warn_protocol = 1;
  818.   else if (!strcmp (p, "-Wno-protocol"))
  819.     flag_warn_protocol = 0;
  820.   else if (!strcmp (p, "-fgnu-runtime"))
  821.     flag_next_runtime = 0;
  822.   else if (!strcmp (p, "-fno-next-runtime"))
  823.     flag_next_runtime = 0;
  824.   else if (!strcmp (p, "-fno-gnu-runtime"))
  825.     flag_next_runtime = 1;
  826.   else if (!strcmp (p, "-fnext-runtime"))
  827.     flag_next_runtime = 1;
  828.   else if (!strcmp (p, "-fselector-table"))
  829.     flag_selector_table = 1;
  830.   else
  831. #ifdef OBJCPLUS
  832.     return cplus_decode_option (p);
  833. #else
  834.     return c_decode_option (p);
  835. #endif
  836.  
  837.   return 1;
  838. }
  839.  
  840. static tree
  841. define_decl (declarator, declspecs)
  842.      tree declarator;
  843.      tree declspecs;
  844. {
  845.   tree decl = start_decl (declarator, declspecs, 0);
  846.   finish_decl (decl, NULLT, NULLT);
  847.   return decl;
  848. }
  849.  
  850. /* Return 1 if LHS and RHS are compatible types for assignment or
  851.    various other operations.  Return 0 if they are incompatible, and
  852.    return -1 if we choose to not decide.  When the operation is
  853.    REFLEXIVE, check for compatibility in either direction.
  854.  
  855.    For statically typed objects, an assignment of the form `a' = `b'
  856.    is permitted if:
  857.  
  858.    `a' is of type "id",
  859.    `a' and `b' are the same class type, or
  860.    `a' and `b' are of class types A and B such that B is a descendant of A.  */
  861.  
  862. int
  863. maybe_objc_comptypes (lhs, rhs, reflexive)
  864.      tree lhs, rhs;
  865.      int reflexive;
  866. {
  867.   if (doing_objc_thang)
  868.     return objc_comptypes (lhs, rhs, reflexive);
  869.   return -1;
  870. }
  871.  
  872. static tree
  873. lookup_method_in_protocol_list (rproto_list, sel_name, class_meth)
  874.    tree rproto_list;
  875.    tree sel_name;
  876.    int class_meth;
  877. {
  878.    tree rproto, p;
  879.    tree fnd = 0;
  880.  
  881.    for (rproto = rproto_list; rproto; rproto = TREE_CHAIN (rproto))
  882.      {
  883.         p = TREE_VALUE (rproto);
  884.  
  885.     if (TREE_CODE (p) == PROTOCOL_INTERFACE_TYPE)
  886.       {
  887.        if ((fnd = lookup_method (class_meth
  888.                     ? PROTOCOL_CLS_METHODS (p)
  889.                     : PROTOCOL_NST_METHODS (p), sel_name)))
  890.             ;
  891.       else if (PROTOCOL_LIST (p))
  892.         fnd = lookup_method_in_protocol_list (PROTOCOL_LIST (p), sel_name, class_meth);
  893.       }
  894.     else
  895.       ; /* an identifier...if we could not find a protocol.  */
  896.  
  897.     if (fnd)
  898.       return fnd;
  899.      }
  900.  
  901.    for (rproto = rproto_list; rproto; rproto = TREE_CHAIN (rproto))
  902.      {
  903.        p = TREE_VALUE (rproto);
  904.        if (TREE_CODE (p) == PROTOCOL_INTERFACE_TYPE)
  905.      if (! PROTOCOL_DEFINED (p))
  906.        warning ("protocol definition for `%s' needed for typechecking",
  907.             IDENTIFIER_POINTER (PROTOCOL_NAME (p)));
  908.      }
  909.    
  910.    return 0;
  911. }
  912.  
  913. static tree
  914. lookup_protocol_in_reflist (rproto_list, lproto)
  915.    tree rproto_list;
  916.    tree lproto;
  917. {
  918.    tree rproto, p;
  919.  
  920.    /* make sure the protocol is support by the object on the rhs */
  921.    if (TREE_CODE (lproto) == PROTOCOL_INTERFACE_TYPE)
  922.      {
  923.      tree fnd = 0;
  924.      for (rproto = rproto_list; rproto; rproto = TREE_CHAIN (rproto))
  925.        {
  926.           p = TREE_VALUE (rproto);
  927.  
  928.       if (TREE_CODE (p) == PROTOCOL_INTERFACE_TYPE)
  929.         {
  930.         if (lproto == p)
  931.           fnd = lproto;
  932.  
  933.         else if (PROTOCOL_LIST (p))
  934.           fnd = lookup_protocol_in_reflist (PROTOCOL_LIST (p), lproto);
  935.         }
  936.  
  937.       if (fnd)
  938.         return fnd;
  939.        }
  940.      }
  941.    else
  942.      ; /* an identifier...if we could not find a protocol. */
  943.  
  944.    return 0;
  945. }
  946.  
  947. /* Return 1 if LHS and RHS are compatible types for assignment
  948.    or various other operations.  Return 0 if they are incompatible,
  949.    and return -1 if we choose to not decide.  When the operation
  950.    is REFLEXIVE, check for compatibility in either direction.  */
  951.  
  952. int
  953. objc_comptypes (lhs, rhs, reflexive)
  954.      tree lhs;
  955.      tree rhs;
  956.      int reflexive;
  957. {
  958.   /* new clause for protocols */
  959.  
  960.   if (TREE_CODE (lhs) == POINTER_TYPE
  961.       && TREE_CODE (TREE_TYPE (lhs)) == RECORD_TYPE
  962.       && TREE_CODE (rhs) == POINTER_TYPE
  963.       && TREE_CODE (TREE_TYPE (rhs)) == RECORD_TYPE)
  964.     {
  965.       int lhs_is_proto = IS_PROTOCOL_QUALIFIED_ID (lhs);
  966.       int rhs_is_proto = IS_PROTOCOL_QUALIFIED_ID (rhs);
  967.  
  968.       if (lhs_is_proto)
  969.         {
  970.       tree lproto, lproto_list = TYPE_PROTOCOL_LIST (lhs);
  971.       tree rproto, rproto_list;
  972.       tree p;
  973.  
  974.       if (rhs_is_proto)
  975.         {
  976.           rproto_list = TYPE_PROTOCOL_LIST (rhs);
  977.  
  978.           /* Make sure the protocol is supported by the object
  979.          on the rhs.  */
  980.           for (lproto = lproto_list; lproto; lproto = TREE_CHAIN (lproto))
  981.         {
  982.           p = TREE_VALUE (lproto);
  983.           rproto = lookup_protocol_in_reflist (rproto_list, p);
  984.  
  985.           if (!rproto)
  986.             warning ("object does not conform to the `%s' protocol",
  987.                  IDENTIFIER_POINTER (PROTOCOL_NAME (p)));
  988.         }
  989.         }
  990.       else if (TYPED_OBJECT (TREE_TYPE (rhs)))
  991.         {
  992.           tree rname = TYPE_NAME (TREE_TYPE (rhs));
  993.           tree rinter;
  994.  
  995.           /* Make sure the protocol is supported by the object
  996.          on the rhs.  */
  997.           for (lproto = lproto_list; lproto; lproto = TREE_CHAIN (lproto))
  998.         {
  999.           p = TREE_VALUE (lproto);
  1000.           rproto = 0;
  1001.           rinter = lookup_interface (rname);
  1002.  
  1003.           while (rinter && !rproto)
  1004.             {
  1005.               tree cat;
  1006.  
  1007.               rproto_list = CLASS_PROTOCOL_LIST (rinter);
  1008.               rproto = lookup_protocol_in_reflist (rproto_list, p);
  1009.  
  1010.               /* NEW!!! */
  1011.               /* Check for protocols adopted by categories. */
  1012.               cat = CLASS_CATEGORY_LIST (rinter);
  1013.               while (cat && !rproto)
  1014.             {
  1015.               rproto_list = CLASS_PROTOCOL_LIST (cat);
  1016.               rproto = lookup_protocol_in_reflist (rproto_list, p);
  1017.  
  1018.               cat = CLASS_CATEGORY_LIST (cat);
  1019.             }
  1020.  
  1021.               rinter = lookup_interface (CLASS_SUPER_NAME (rinter));
  1022.             }
  1023.           if (!rproto)
  1024.             warning ("class `%s' does not implement the `%s' protocol",
  1025.                          IDENTIFIER_POINTER (TYPE_NAME (TREE_TYPE (rhs))),
  1026.                      IDENTIFIER_POINTER (PROTOCOL_NAME (p)));
  1027.         }
  1028.         }
  1029.  
  1030.           return 1; /* may change...based on whether there was any mismatch */
  1031.         }
  1032.       else if (rhs_is_proto)
  1033.         {
  1034.       /* lhs is not a protocol...warn if it is statically typed */
  1035.  
  1036.       if (TYPED_OBJECT (TREE_TYPE (lhs)))
  1037.         return 0;
  1038.       else
  1039.         return 1;    /* one of the types is a protocol */
  1040.     }
  1041.       else
  1042.     return -1;    /* defer to comptypes */
  1043.     }
  1044.   else if (TREE_CODE (lhs) == RECORD_TYPE && TREE_CODE (rhs) == RECORD_TYPE)
  1045.     ; /* fall thru...this is the case we have been handling all along */
  1046.   else
  1047.     return -1;    /* defer to comptypes */
  1048.  
  1049.   /* End of new protocol support.  */
  1050.  
  1051.   /* `id' = `<class> *', `<class> *' = `id' */
  1052.  
  1053.   if ((TYPE_NAME (lhs) == objc_object_id && TYPED_OBJECT (rhs))
  1054.       || (TYPE_NAME (rhs) == objc_object_id && TYPED_OBJECT (lhs)))
  1055.     return 1;
  1056.  
  1057.   /* `id' = `Class', `Class' = `id' */
  1058.  
  1059.   else if ((TYPE_NAME (lhs) == objc_object_id
  1060.         && TYPE_NAME (rhs) == objc_class_id)
  1061.        || (TYPE_NAME (lhs) == objc_class_id
  1062.            && TYPE_NAME (rhs) == objc_object_id))
  1063.     return 1;
  1064.  
  1065.   /* `<class> *' = `<class> *' */
  1066.  
  1067.   else if (TYPED_OBJECT (lhs) && TYPED_OBJECT (rhs))
  1068.     {
  1069.       tree lname = TYPE_NAME (lhs);
  1070.       tree rname = TYPE_NAME (rhs);
  1071.       tree inter;
  1072.  
  1073.       if (lname == rname)
  1074.     return 1;
  1075.  
  1076.       /* If the left hand side is a super class of the right hand side,
  1077.      allow it.  */
  1078.       for (inter = lookup_interface (rname); inter;
  1079.        inter = lookup_interface (CLASS_SUPER_NAME (inter)))
  1080.     if (lname == CLASS_SUPER_NAME (inter))
  1081.       return 1;
  1082.  
  1083.       /* Allow the reverse when reflexive.  */
  1084.       if (reflexive)
  1085.     for (inter = lookup_interface (lname); inter;
  1086.          inter = lookup_interface (CLASS_SUPER_NAME (inter)))
  1087.       if (rname == CLASS_SUPER_NAME (inter))
  1088.         return 1;
  1089.  
  1090.       return 0;
  1091.     }
  1092.   else
  1093.     return -1;    /* defer to comptypes */
  1094. }
  1095.  
  1096. /* Called from c-decl.c before all calls to rest_of_decl_compilation.  */
  1097.  
  1098. void
  1099. objc_check_decl (decl)
  1100.      tree decl;
  1101. {
  1102.   tree type = TREE_TYPE (decl);
  1103.  
  1104.   if (TREE_CODE (type) == RECORD_TYPE
  1105.       && TREE_STATIC_TEMPLATE (type)
  1106.       && type != constant_string_type)
  1107.     {
  1108.       error_with_decl (decl, "`%s' cannot be statically allocated");
  1109.       fatal ("statically allocated objects not supported");
  1110.     }
  1111. }
  1112.  
  1113. void
  1114. maybe_objc_check_decl (decl)
  1115.      tree decl;
  1116. {
  1117.   if (doing_objc_thang)
  1118.     objc_check_decl (decl);
  1119. }
  1120.  
  1121. /* Implement static typing.  At this point, we know we have an interface.  */
  1122.  
  1123. tree
  1124. get_static_reference (interface, protocols)
  1125.      tree interface;
  1126.      tree protocols;
  1127. {
  1128.   tree type = xref_tag (RECORD_TYPE, interface);
  1129.  
  1130.   if (protocols)
  1131.     {
  1132.       tree t, m = TYPE_MAIN_VARIANT (type);
  1133.       struct obstack *ambient_obstack = current_obstack;
  1134.  
  1135.       current_obstack = &permanent_obstack;
  1136.       t = copy_node (type);
  1137.       TYPE_BINFO (t) = make_tree_vec (2);
  1138.  
  1139.       /* Add this type to the chain of variants of TYPE.  */
  1140.       TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
  1141.       TYPE_NEXT_VARIANT (m) = t;
  1142.  
  1143.       current_obstack = ambient_obstack;
  1144.  
  1145.       /* Look up protocols and install in lang specific list.  */
  1146.       TYPE_PROTOCOL_LIST (t) = lookup_and_install_protocols (protocols);
  1147.  
  1148.       /* This forces a new pointer type to be created later
  1149.      (in build_pointer_type)...so that the new template
  1150.      we just created will actually be used...what a hack!  */
  1151.       if (TYPE_POINTER_TO (t))
  1152.     TYPE_POINTER_TO (t) = NULL;
  1153.  
  1154.       type = t;
  1155.     }
  1156.  
  1157.   return type;
  1158. }
  1159.  
  1160. tree
  1161. get_object_reference (protocols)
  1162.      tree protocols;
  1163. {
  1164. #ifdef OBJCPLUS
  1165.   tree type_decl = lookup_name_type (objc_id_id);
  1166. #else
  1167.   tree type_decl = lookup_name (objc_id_id);
  1168. #endif
  1169.   tree type;
  1170.  
  1171.   if (type_decl && TREE_CODE (type_decl) == TYPE_DECL)
  1172.     {
  1173.       type = TREE_TYPE (type_decl);
  1174.       if (TYPE_MAIN_VARIANT (type) != id_type)
  1175.     warning ("Unexpected type for `id' (%s)",
  1176.         gen_declaration (type, errbuf));
  1177.     }
  1178.   else
  1179.     {
  1180.       fatal ("Undefined type `id', please import <objc/objc.h>");
  1181.     }
  1182.  
  1183.   /* This clause creates a new pointer type that is qualified with
  1184.      the protocol specification...this info is used later to do more
  1185.      elaborate type checking.  */
  1186.   if (protocols)
  1187.     {
  1188.       tree t, m = TYPE_MAIN_VARIANT (type);
  1189.       struct obstack *ambient_obstack = current_obstack;
  1190.  
  1191.       current_obstack = &permanent_obstack;
  1192.       t = copy_node (type);
  1193.       TYPE_BINFO (t) = make_tree_vec (2);
  1194.  
  1195.       /* Add this type to the chain of variants of TYPE.  */
  1196.       TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
  1197.       TYPE_NEXT_VARIANT (m) = t;
  1198.  
  1199.       current_obstack = ambient_obstack;
  1200.  
  1201.       /* look up protocols...and install in lang specific list */
  1202.       TYPE_PROTOCOL_LIST (t) = lookup_and_install_protocols (protocols);
  1203.  
  1204.       /* This forces a new pointer type to be created later
  1205.      (in build_pointer_type)...so that the new template
  1206.      we just created will actually be used...what a hack!  */
  1207.       if (TYPE_POINTER_TO (t))
  1208.     TYPE_POINTER_TO (t) = NULL;
  1209.  
  1210.       type = t;
  1211.     }
  1212.   return type;
  1213. }
  1214.  
  1215. /*
  1216.  * This function checks for circular dependencies in protocols.  The
  1217.  * arguments are PROTO, the protocol to check, and LIST, a list of
  1218.  * protocol it conforms to.
  1219.  */
  1220. static tree 
  1221. check_protocol_recursively (proto, list)
  1222.      tree proto, list;
  1223. {
  1224.   tree p;
  1225.   for (p = list; p; p = TREE_CHAIN (p))
  1226.     {
  1227.       tree pp = TREE_VALUE (p);
  1228.  
  1229.       if (TREE_CODE (pp) == IDENTIFIER_NODE)
  1230.     pp = lookup_protocol (pp);
  1231.  
  1232.       if (pp == proto)
  1233.     fatal ("protocol `%s' has circular dependency",
  1234.            IDENTIFIER_POINTER (PROTOCOL_NAME (pp)));      
  1235.       if (pp)
  1236.     check_protocol_recursively (proto, PROTOCOL_LIST (pp));
  1237.     }
  1238. }
  1239.  
  1240. static tree
  1241. lookup_and_install_protocols (protocols)
  1242.      tree protocols;
  1243. {
  1244.   tree proto;
  1245.   tree prev = NULL;
  1246.   tree return_value = protocols;
  1247.  
  1248.   for (proto = protocols; proto; proto = TREE_CHAIN (proto))
  1249.     {
  1250.       tree ident = TREE_VALUE (proto);
  1251.       tree p = lookup_protocol (ident);
  1252.  
  1253.       if (!p)
  1254.     {
  1255.       error ("Cannot find protocol declaration for `%s'",
  1256.          IDENTIFIER_POINTER (ident));
  1257.       if (prev)
  1258.         TREE_CHAIN (prev) = TREE_CHAIN (proto);
  1259.       else
  1260.         return_value = TREE_CHAIN (proto);
  1261.     }
  1262.       else
  1263.     {
  1264.       /* replace identifier with actual protocol node */
  1265.       TREE_VALUE (proto) = p;
  1266.       prev = proto;
  1267.     }
  1268.     }
  1269.   return return_value;
  1270. }
  1271.  
  1272. /* Create and push a decl for a built-in external variable or field NAME.
  1273.    CODE says which.
  1274.    TYPE is its data type.  */
  1275.  
  1276. static tree
  1277. create_builtin_decl (code, type, name)
  1278.      enum tree_code code;
  1279.      tree type;
  1280.      char *name;
  1281. {
  1282. #ifdef OBJCPLUS
  1283.   tree decl = build_lang_field_decl (code, get_identifier (name), type);
  1284. #else
  1285.   tree decl = build_decl (code, get_identifier (name), type);
  1286. #endif
  1287.   if (code == VAR_DECL)
  1288.     {
  1289.       TREE_STATIC (decl) = 1;
  1290.       make_decl_rtl (decl, 0, 1);
  1291.       pushdecl (decl);
  1292.     }
  1293.   return decl;
  1294. }
  1295.  
  1296. /* purpose: "play" parser, creating/installing representations
  1297.    of the declarations that are required by Objective-C.
  1298.  
  1299.    model:
  1300.  
  1301.      type_spec--------->sc_spec
  1302.      (tree_list)        (tree_list)
  1303.          |                  |
  1304.          |                  |
  1305.      identifier_node    identifier_node  */
  1306.  
  1307. static void
  1308. synth_module_prologue ()
  1309. {
  1310.   tree temp_type;
  1311.   tree super_p;
  1312.  
  1313. #ifdef OBJCPLUS
  1314.   push_lang_context (lang_name_c); /* extern "C" */
  1315. #endif
  1316.  
  1317.   /* defined in `objc.h' */
  1318.   objc_object_id = get_identifier (TAG_OBJECT);
  1319.  
  1320.   objc_object_reference = xref_tag (RECORD_TYPE, objc_object_id);
  1321.  
  1322.   id_type = build_pointer_type (objc_object_reference);
  1323.  
  1324.   objc_id_id = get_identifier (TYPE_ID);
  1325.   objc_class_id = get_identifier (TAG_CLASS);
  1326.  
  1327.   objc_class_type = build_pointer_type (xref_tag (RECORD_TYPE, objc_class_id));
  1328.   protocol_type = build_pointer_type (xref_tag (RECORD_TYPE,
  1329.                 get_identifier (PROTOCOL_OBJECT_CLASS_NAME)));
  1330.  
  1331.   /* Declare type of selector-objects that represent an operation name.  */
  1332.  
  1333. #ifdef OBJC_INT_SELECTORS
  1334.   /* `unsigned int' */
  1335.   selector_type = unsigned_type_node;
  1336. #else
  1337.   /* `struct objc_selector *' */
  1338.   selector_type
  1339.     = build_pointer_type (xref_tag (RECORD_TYPE,
  1340.                     get_identifier (TAG_SELECTOR)));
  1341. #endif /* not OBJC_INT_SELECTORS */
  1342.  
  1343.   /* Forward declare type, or else the prototype for msgSendSuper will
  1344.      complain.  */
  1345.  
  1346.   super_p = build_pointer_type (xref_tag (RECORD_TYPE,
  1347.                       get_identifier (TAG_SUPER)));
  1348.  
  1349.  
  1350.   /* id objc_msgSend (id, SEL, ...); */
  1351.  
  1352.   temp_type
  1353.     = build_function_type (id_type,
  1354.                tree_cons (NULL_TREE, id_type,
  1355.                       tree_cons (NULLT, selector_type, NULLT)));
  1356.  
  1357.   if (! flag_next_runtime)
  1358.     {
  1359.       umsg_decl = build_decl (FUNCTION_DECL,
  1360.                   get_identifier (TAG_MSGSEND), temp_type);
  1361.       DECL_EXTERNAL (umsg_decl) = 1;
  1362.       TREE_PUBLIC (umsg_decl) = 1;
  1363.       DECL_INLINE (umsg_decl) = 1;
  1364.  
  1365.       if (flag_traditional && TAG_MSGSEND[0] != '_')
  1366.     DECL_BUILT_IN_NONANSI (umsg_decl) = 1;
  1367.  
  1368.       make_decl_rtl (umsg_decl, NULL_PTR, 1);
  1369.       pushdecl (umsg_decl);
  1370.     }
  1371.   else
  1372.     umsg_decl = builtin_function (TAG_MSGSEND, temp_type, NOT_BUILT_IN, 0);
  1373.  
  1374.   /* id objc_msgSendSuper (struct objc_super *, SEL, ...); */
  1375.  
  1376.   temp_type
  1377.     = build_function_type (id_type,
  1378.                tree_cons (NULL_TREE, super_p,
  1379.                       tree_cons (NULLT, selector_type, NULLT)));
  1380.  
  1381.   umsg_super_decl = builtin_function (TAG_MSGSENDSUPER,
  1382.                      temp_type, NOT_BUILT_IN, 0);
  1383.  
  1384.   /* id objc_getClass (const char *); */
  1385.  
  1386. #ifdef OBJCPLUS
  1387.   temp_type = build_function_type (id_type,
  1388.             tree_cons (NULLT,
  1389.                    const_string_type_node,
  1390.                    void_list_node));
  1391. #else
  1392.   temp_type = build_function_type (id_type,
  1393.             tree_cons (NULLT,
  1394.                    const_string_type_node,
  1395.                    tree_cons (NULLT, void_type_node, NULLT)));
  1396. #endif
  1397.  
  1398.   objc_get_class_decl
  1399.     = builtin_function (TAG_GETCLASS, temp_type, NOT_BUILT_IN, 0);
  1400.  
  1401.   /* id objc_getMetaClass (const char *); */
  1402.  
  1403.   objc_get_meta_class_decl
  1404.     = builtin_function (TAG_GETMETACLASS, temp_type, NOT_BUILT_IN, 0);
  1405.  
  1406.   /* static SEL _OBJC_SELECTOR_TABLE[]; */
  1407.  
  1408.   if (flag_selector_table)
  1409.     {
  1410.  
  1411.       if (flag_typed_selectors)
  1412.     {
  1413.       /* supress outputting debug symbols, because
  1414.          dbxout_init hasn'r been called yet... */
  1415.       enum debug_info_type save_write_symbols = write_symbols;
  1416.       write_symbols = NO_DEBUG;
  1417.  
  1418.       build_selector_template ();
  1419.       temp_type = build_array_type (objc_selector_template, NULLT);
  1420.  
  1421.       write_symbols = save_write_symbols;
  1422.     }
  1423.       else
  1424.     temp_type = build_array_type (selector_type, NULLT);
  1425.  
  1426.       layout_type (temp_type);
  1427.       UOBJC_SELECTOR_TABLE_decl
  1428.     = create_builtin_decl (VAR_DECL, temp_type,
  1429.                    "_OBJC_SELECTOR_TABLE");
  1430.     }
  1431.  
  1432.   generate_forward_declaration_to_string_table ();
  1433.  
  1434.   /* Forward declare constant_string_id and constant_string_type.  */
  1435.   constant_string_id = get_identifier (STRING_OBJECT_CLASS_NAME);
  1436.   constant_string_type = xref_tag (RECORD_TYPE, constant_string_id);
  1437.  
  1438. #ifdef OBJCPLUS
  1439.   pop_lang_context ();
  1440. #endif
  1441. }
  1442.  
  1443. /* Custom build_string which sets TREE_TYPE!  */
  1444.  
  1445. static tree
  1446. my_build_string (len, str)
  1447.      int len;
  1448.      char *str;
  1449. {
  1450.   int wide_flag = 0;
  1451.   tree a_string = build_string (len, str);
  1452.   /* Some code from combine_strings, which is local to c-parse.y.  */
  1453.   if (TREE_TYPE (a_string) == int_array_type_node)
  1454.     wide_flag = 1;
  1455.  
  1456.   TREE_TYPE (a_string) =
  1457.     build_array_type (wide_flag ? integer_type_node : char_type_node,
  1458.               build_index_type (build_int_2 (len - 1, 0)));
  1459.  
  1460.   TREE_CONSTANT (a_string) = 1;    /* puts string in the ".text" segment */
  1461.   TREE_STATIC (a_string) = 1;
  1462.  
  1463.   return a_string;
  1464. }
  1465.  
  1466. /* Return a newly constructed OBJC_STRING_CST node whose value is
  1467.    the LEN characters at STR.
  1468.    The TREE_TYPE is not initialized.  */
  1469.  
  1470. tree
  1471. build_objc_string (len, str)
  1472.      int len;
  1473.      char *str;
  1474. {
  1475.   tree s = build_string (len, str);
  1476.  
  1477.   TREE_SET_CODE (s, OBJC_STRING_CST);
  1478.   return s;
  1479. }
  1480.  
  1481. /* Given a chain of OBJC_STRING_CST's, build a static instance of
  1482.    NXConstantString which points at the concatenation of those strings.
  1483.    We place the string object in the __string_objects section of the
  1484.    __OBJC segment.  The Objective-C runtime will initialize the isa
  1485.    pointers of the string objects to point at the NXConstantString
  1486.    class object.  */
  1487.  
  1488. tree
  1489. build_objc_string_object (strings)
  1490.      tree strings;
  1491. {
  1492.   tree string, initlist, constructor;
  1493.   int length;
  1494.  
  1495.   if (!doing_objc_thang)
  1496.     objc_fatal ();
  1497.  
  1498.   if (lookup_interface (constant_string_id) == NULLT)
  1499.     {
  1500.       error ("Cannot find interface declaration for `%s'",
  1501.            IDENTIFIER_POINTER (constant_string_id));
  1502.       return error_mark_node;
  1503.     }
  1504.  
  1505.   add_class_reference (constant_string_id);
  1506.  
  1507.   /* combine_strings will work for OBJC_STRING_CST's too.  */
  1508.   string = combine_strings (strings);
  1509.   TREE_SET_CODE (string, STRING_CST);
  1510.   length = TREE_STRING_LENGTH (string) - 1;
  1511.  
  1512.   /* & ((NXConstantString) {0, string, length})  */
  1513.  
  1514.   {
  1515.     struct obstack* save_current_obstack = current_obstack;
  1516.     struct obstack* save_expression_obstack = expression_obstack;
  1517.  
  1518.  
  1519.     /* if (current_function_decl == 0) */
  1520.       {
  1521.     current_obstack = &permanent_obstack;
  1522.     expression_obstack = &permanent_obstack;
  1523.     string = copy_node (string);
  1524.       }
  1525.  
  1526.  
  1527.     initlist = build_tree_list (NULLT, build_int_2 (0, 0));
  1528.     initlist = tree_cons (NULLT, copy_node (build_unary_op (ADDR_EXPR, string, 1)),
  1529.               initlist);
  1530.     initlist = tree_cons (NULLT, build_int_2 (length, 0), initlist);
  1531.     constructor = build_constructor (constant_string_type,
  1532.                      nreverse (initlist));
  1533.  
  1534.     constructor = copy_node (build_unary_op (ADDR_EXPR, constructor, 1));
  1535.  
  1536.  
  1537.     /* if (current_function_decl == 0) */
  1538.       {
  1539.     current_obstack = save_current_obstack;
  1540.     expression_obstack = save_expression_obstack;
  1541.       }
  1542.   }
  1543.  
  1544.   return constructor;
  1545. }
  1546.  
  1547. /* Build a static constant CONSTRUCTOR
  1548.    with type TYPE and elements ELTS.  */
  1549.  
  1550. static tree
  1551. build_constructor (type, elts)
  1552.      tree type, elts;
  1553. {
  1554.   tree constructor = build (CONSTRUCTOR, type, NULL_TREE, elts);
  1555.  
  1556.   TREE_CONSTANT (constructor) = 1;
  1557.   TREE_STATIC (constructor) = 1;
  1558.   TREE_READONLY (constructor) = 1;
  1559.  
  1560.   return constructor;
  1561. }
  1562.  
  1563. /* Take care of defining and initializing _OBJC_SYMBOLS.  */
  1564.  
  1565. /* Predefine the following data type:
  1566.  
  1567.    struct _objc_symtab
  1568.    {
  1569.      long sel_ref_cnt;
  1570.      SEL *refs;
  1571.      short cls_def_cnt;
  1572.      short cat_def_cnt;
  1573.      void *defs[cls_def_cnt + cat_def_cnt];
  1574.    }; */
  1575.  
  1576. static void
  1577. build_objc_symtab_template ()
  1578. {
  1579.   tree field_decl, field_decl_chain, index;
  1580.  
  1581.   objc_symtab_template = start_struct (RECORD_TYPE, get_identifier (UTAG_SYMTAB));
  1582.  
  1583.   /* long sel_ref_cnt; */
  1584.  
  1585.   field_decl = create_builtin_decl (FIELD_DECL,
  1586.                     long_integer_type_node,
  1587.                     "sel_ref_cnt");
  1588.   field_decl_chain = field_decl;
  1589.  
  1590.   /* SEL *refs; */
  1591.  
  1592.   field_decl = create_builtin_decl (FIELD_DECL,
  1593.                     build_pointer_type (selector_type),
  1594.                     "refs");
  1595.   chainon (field_decl_chain, field_decl);
  1596.  
  1597.   /* short cls_def_cnt; */
  1598.  
  1599.   field_decl = create_builtin_decl (FIELD_DECL,
  1600.                     short_integer_type_node,
  1601.                     "cls_def_cnt");
  1602.   chainon (field_decl_chain, field_decl);
  1603.  
  1604.   /* short cat_def_cnt; */
  1605.  
  1606.   field_decl = create_builtin_decl (FIELD_DECL,
  1607.                     short_integer_type_node,
  1608.                     "cat_def_cnt");
  1609.   chainon (field_decl_chain, field_decl);
  1610.  
  1611.   /* void *defs[cls_def_cnt + cat_def_cnt]; */
  1612.  
  1613.   index = build_index_type (build_int_2 (imp_count + cat_count - 1,
  1614.                      imp_count == 0 && cat_count == 0
  1615.                      ? -1 : 0));
  1616.   field_decl = create_builtin_decl (FIELD_DECL,
  1617.                     build_array_type (ptr_type_node, index),
  1618.                     "defs");
  1619.   chainon (field_decl_chain, field_decl);
  1620.  
  1621.   finish_struct (objc_symtab_template, field_decl_chain);
  1622. }
  1623.  
  1624. /* Create the initial value for the `defs' field of _objc_symtab.
  1625.    This is a CONSTRUCTOR.  */
  1626.  
  1627. static tree
  1628. init_def_list (type)
  1629.      tree type;
  1630. {
  1631.   tree expr, initlist = NULLT;
  1632.   struct imp_entry *impent;
  1633.  
  1634.   if (imp_count)
  1635.     for (impent = imp_list; impent; impent = impent->next)
  1636.       {
  1637.     if (TREE_CODE (impent->imp_context) == CLASS_IMPLEMENTATION_TYPE)
  1638.       {
  1639.         expr = build_unary_op (ADDR_EXPR, impent->class_decl, 0);
  1640.  
  1641. #if 0
  1642. #ifdef MACHO_PIC
  1643.         if (!flag_dave_indirect && MACHOPIC_INDIRECT)
  1644.           TREE_SELF_OFFSET (expr) = 1;
  1645. #endif
  1646. #endif
  1647.  
  1648.         initlist = tree_cons (NULLT, expr, initlist);
  1649.       }
  1650.       }
  1651.  
  1652.   if (cat_count)
  1653.     for (impent = imp_list; impent; impent = impent->next)
  1654.       {
  1655.     if (TREE_CODE (impent->imp_context) == CATEGORY_IMPLEMENTATION_TYPE)
  1656.       {
  1657.         expr = build_unary_op (ADDR_EXPR, impent->class_decl, 0);
  1658.  
  1659. #if 0
  1660. #ifdef MACHO_PIC
  1661.         if (!flag_dave_indirect && MACHOPIC_INDIRECT)
  1662.           TREE_SELF_OFFSET (expr) = 1;
  1663. #endif
  1664. #endif
  1665.  
  1666.         initlist = tree_cons (NULLT, expr, initlist);
  1667.       }
  1668.       }
  1669.   return build_constructor (type, nreverse (initlist));
  1670. }
  1671.  
  1672. /* Construct the initial value for all of _objc_symtab.  */
  1673.  
  1674. static tree
  1675. init_objc_symtab (type)
  1676.      tree type;
  1677. {
  1678.   tree initlist;
  1679.  
  1680.   /* sel_ref_cnt = { ..., 5, ... } */
  1681.  
  1682.   initlist = build_tree_list (NULLT, build_int_2 (0, 0));
  1683.  
  1684.   /* refs = { ..., _OBJC_SELECTOR_TABLE, ... } */
  1685.  
  1686.   if (! flag_selector_table || ! sel_ref_chain)
  1687.     initlist = tree_cons (NULLT, build_int_2 (0, 0), initlist);
  1688.   else
  1689.     initlist = tree_cons (NULLT,
  1690.               build_unary_op (ADDR_EXPR,
  1691.                       UOBJC_SELECTOR_TABLE_decl, 1),
  1692.               initlist);
  1693.  
  1694.   /* cls_def_cnt = { ..., 5, ... } */
  1695.  
  1696.   initlist = tree_cons (NULLT, build_int_2 (imp_count, 0), initlist);
  1697.  
  1698.   /* cat_def_cnt = { ..., 5, ... } */
  1699.  
  1700.   initlist = tree_cons (NULLT, build_int_2 (cat_count, 0), initlist);
  1701.  
  1702.   /* cls_def = { ..., { &Foo, &Bar, ...}, ... } */
  1703.  
  1704.   if (imp_count || cat_count)
  1705.     {
  1706.       tree field = TYPE_FIELDS (type);
  1707.       field = TREE_CHAIN (TREE_CHAIN (TREE_CHAIN (TREE_CHAIN (field))));
  1708.  
  1709.       initlist = tree_cons (NULLT, init_def_list (TREE_TYPE (field)),
  1710.                 initlist);
  1711.     }
  1712.  
  1713.   return build_constructor (type, nreverse (initlist));
  1714. }
  1715.  
  1716. /* Push forward-declarations of all the categories
  1717.    so that init_def_list can use them in a CONSTRUCTOR.  */
  1718.  
  1719. static void
  1720. forward_declare_categories ()
  1721. {
  1722.   struct imp_entry *impent;
  1723.   tree sav = implementation_context;
  1724.   for (impent = imp_list; impent; impent = impent->next)
  1725.     {
  1726.       if (TREE_CODE (impent->imp_context) == CATEGORY_IMPLEMENTATION_TYPE)
  1727.     {
  1728.       /* Set an invisible arg to synth_id_with_class_suffix.  */
  1729.       implementation_context = impent->imp_context;
  1730.       impent->class_decl
  1731.         = create_builtin_decl (VAR_DECL, objc_category_template,
  1732.                    IDENTIFIER_POINTER (synth_id_with_class_suffix ("_OBJC_CATEGORY", implementation_context)));
  1733.     }
  1734.     }
  1735.   implementation_context = sav;
  1736. }
  1737.  
  1738. /* Create the declaration of _OBJC_SYMBOLS, with type `strict _objc_symtab'
  1739.    and initialized appropriately.  */
  1740.  
  1741. static void
  1742. generate_objc_symtab_decl ()
  1743. {
  1744.   tree sc_spec;
  1745.  
  1746.   if (!objc_category_template)
  1747.     build_category_template ();
  1748.  
  1749.   /* forward declare categories */
  1750.   if (cat_count)
  1751.     forward_declare_categories ();
  1752.  
  1753.   if (!objc_symtab_template)
  1754.     build_objc_symtab_template ();
  1755.  
  1756.   sc_spec = build_tree_list (NULLT, ridpointers[(int) RID_STATIC]);
  1757.  
  1758.   UOBJC_SYMBOLS_decl = start_decl (get_identifier ("_OBJC_SYMBOLS"),
  1759.                    tree_cons (NULLT, objc_symtab_template, sc_spec), 1);
  1760.  
  1761.   end_temporary_allocation ();    /* start_decl trying to be smart about inits */
  1762.   TREE_USED (UOBJC_SYMBOLS_decl) = 1;
  1763.   DECL_IGNORED_P (UOBJC_SYMBOLS_decl) = 1;
  1764.   finish_decl (UOBJC_SYMBOLS_decl,
  1765.            init_objc_symtab (TREE_TYPE (UOBJC_SYMBOLS_decl)),
  1766.            NULLT);
  1767. }
  1768.  
  1769. static tree
  1770. init_module_descriptor (type)
  1771.      tree type;
  1772. {
  1773.   tree initlist, expr;
  1774.  
  1775.   /* version = { 1, ... } */
  1776.  
  1777.   expr = build_int_2 (OBJC_VERSION, 0);
  1778.   initlist = build_tree_list (NULLT, expr);
  1779.  
  1780.   /* size = { ..., sizeof (struct objc_module), ... } */
  1781.  
  1782.   expr = size_in_bytes (objc_module_template);
  1783.   initlist = tree_cons (NULLT, expr, initlist);
  1784.  
  1785.   /* name = { ..., "foo.m", ... } */
  1786.  
  1787.   expr = add_objc_string (get_identifier (input_filename), class_names);
  1788.   initlist = tree_cons (NULLT, expr, initlist);
  1789.  
  1790.   /* symtab = { ..., _OBJC_SYMBOLS, ... } */
  1791.  
  1792.   if (UOBJC_SYMBOLS_decl)
  1793.     expr = build_unary_op (ADDR_EXPR, UOBJC_SYMBOLS_decl, 0);
  1794.   else
  1795.     expr = build_int_2 (0, 0);
  1796.   initlist = tree_cons (NULLT, expr, initlist);
  1797.  
  1798.   return build_constructor (type, nreverse (initlist));
  1799. }
  1800.  
  1801. /* Write out the data structures to describe Objective C classes defined.
  1802.    If appropriate, compile and output a setup function to initialize them.
  1803.    Return a string which is the name of a function to call to initialize
  1804.    the Objective C data structures for this file (and perhaps for other files
  1805.    also).
  1806.  
  1807.    struct objc_module { ... } _OBJC_MODULE = { ... };
  1808.  
  1809. */
  1810.  
  1811. static char *
  1812. build_module_descriptor ()
  1813. {
  1814.   tree decl_specs, field_decl, field_decl_chain;
  1815.  
  1816.   objc_module_template = start_struct (RECORD_TYPE, get_identifier (UTAG_MODULE));
  1817.  
  1818.   /* long version; */
  1819.  
  1820.   decl_specs = build_tree_list (NULLT, ridpointers[(int) RID_LONG]);
  1821.   field_decl = get_identifier ("version");
  1822.   field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  1823.   field_decl_chain = field_decl;
  1824.  
  1825.   /* long  size; */
  1826.  
  1827.   decl_specs = build_tree_list (NULLT, ridpointers[(int) RID_LONG]);
  1828.   field_decl = get_identifier ("size");
  1829.   field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  1830.   chainon (field_decl_chain, field_decl);
  1831.  
  1832.   /* char  *name; */
  1833.  
  1834.   decl_specs = build_tree_list (NULLT, ridpointers[(int) RID_CHAR]);
  1835.   field_decl = build1 (INDIRECT_REF, NULLT, get_identifier ("name"));
  1836.   field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  1837.   chainon (field_decl_chain, field_decl);
  1838.  
  1839.   /* struct objc_symtab *symtab; */
  1840.  
  1841.   decl_specs = get_identifier (UTAG_SYMTAB);
  1842.   decl_specs = build_tree_list (NULLT, xref_tag (RECORD_TYPE, decl_specs));
  1843.   field_decl = build1 (INDIRECT_REF, NULLT, get_identifier ("symtab"));
  1844.   field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  1845.   chainon (field_decl_chain, field_decl);
  1846.  
  1847.   finish_struct (objc_module_template, field_decl_chain);
  1848.  
  1849.   /* create an instance of "objc_module" */
  1850.  
  1851.   decl_specs = tree_cons (NULLT, objc_module_template,
  1852.               build_tree_list (NULLT, ridpointers[(int) RID_STATIC]));
  1853.  
  1854.   UOBJC_MODULES_decl = start_decl (get_identifier ("_OBJC_MODULES"),
  1855.                    decl_specs, 1);
  1856.  
  1857.   end_temporary_allocation ();    /* start_decl trying to be smart about inits */
  1858.   DECL_IGNORED_P (UOBJC_MODULES_decl) = 1;
  1859.   finish_decl (UOBJC_MODULES_decl,
  1860.            init_module_descriptor (TREE_TYPE (UOBJC_MODULES_decl)),
  1861.            NULLT);
  1862.  
  1863.   /* Mark the decl to avoid "defined but not used" warning. */
  1864.   DECL_IN_SYSTEM_HEADER (UOBJC_MODULES_decl) = 1;
  1865.  
  1866.   /* Generate a constructor call for the module descriptor.
  1867.      This code was generated by reading the grammar rules
  1868.      of c-parse.y;  Therefore, it may not be the most efficient
  1869.      way of generating the requisite code. */
  1870.  
  1871.   if (flag_next_runtime)
  1872.     return 0;
  1873.  
  1874.   {
  1875.     tree parms, function_decl, decelerator, void_list_node;
  1876.     tree function_type;
  1877.     extern tree get_file_function_name ();
  1878.     tree init_function_name = get_file_function_name ('I');
  1879.  
  1880.     /* Declare void __objc_execClass (void*); */
  1881.  
  1882.     void_list_node = build_tree_list (NULL_TREE, void_type_node);
  1883.     function_type
  1884.       = build_function_type (void_type_node,
  1885.                  tree_cons (NULL_TREE, ptr_type_node,
  1886.                     void_list_node));
  1887.     function_decl = build_decl (FUNCTION_DECL,
  1888.                 get_identifier (TAG_EXECCLASS),
  1889.                 function_type);
  1890.     DECL_EXTERNAL (function_decl) = 1;
  1891.     TREE_PUBLIC (function_decl) = 1;
  1892.     pushdecl (function_decl);
  1893.     rest_of_decl_compilation (function_decl, 0, 0, 0);
  1894.  
  1895.     parms
  1896.       = build_tree_list (NULLT,
  1897.              build_unary_op (ADDR_EXPR, UOBJC_MODULES_decl, 0));
  1898.     decelerator = build_function_call (function_decl, parms);
  1899.  
  1900.     /* void _GLOBAL_$I$<gnyf> () {objc_execClass (&L_OBJC_MODULES);}  */
  1901.  
  1902.     start_function (void_list_node,
  1903.             build_parse_node (CALL_EXPR, init_function_name,
  1904.                       /* This has the format of the output
  1905.                      of get_parm_info.  */
  1906.                       tree_cons (NULL_TREE, NULL_TREE,
  1907.                          void_list_node),
  1908.                       NULL_TREE),
  1909.             0);
  1910. #if 0 /* This should be turned back on later
  1911.      for the systems where collect is not needed.  */
  1912.     /* Make these functions nonglobal
  1913.        so each file can use the same name.  */
  1914.     TREE_PUBLIC (current_function_decl) = 0;
  1915. #endif
  1916.     TREE_USED (current_function_decl) = 1;
  1917.     store_parm_decls ();
  1918.  
  1919.     assemble_external (function_decl);
  1920.     c_expand_expr_stmt (decelerator);
  1921.  
  1922.     finish_function (0);
  1923.     
  1924.  
  1925.     /* Return the name of the constructor function.  */
  1926.     return IDENTIFIER_POINTER (init_function_name);
  1927.   }
  1928. }
  1929.  
  1930. /* extern const char _OBJC_STRINGS[]; */
  1931.  
  1932. static void
  1933. generate_forward_declaration_to_string_table ()
  1934. {
  1935.   tree sc_spec, decl_specs, expr_decl;
  1936.  
  1937.   sc_spec = tree_cons (NULLT, ridpointers[(int) RID_EXTERN], NULLT);
  1938.   decl_specs = tree_cons (NULLT, ridpointers[(int) RID_CHAR], sc_spec);
  1939.  
  1940.   expr_decl = build_nt (ARRAY_REF, get_identifier ("_OBJC_STRINGS"), NULLT);
  1941.  
  1942.   UOBJC_STRINGS_decl = define_decl (expr_decl, decl_specs);
  1943. }
  1944.  
  1945. /* Output all strings. */
  1946.  
  1947. static void
  1948. generate_strings ()
  1949. {
  1950.   tree sc_spec, decl_specs, expr_decl;
  1951.   tree chain, string_expr;
  1952.   tree string, decl;
  1953.  
  1954.   for (chain = class_names_chain; chain; chain = TREE_CHAIN (chain))
  1955.     {
  1956.       string = TREE_VALUE (chain);
  1957.       decl = TREE_PURPOSE (chain);
  1958.       sc_spec = tree_cons (NULLT, ridpointers[(int) RID_STATIC], NULLT);
  1959.       decl_specs = tree_cons (NULLT, ridpointers[(int) RID_CHAR], sc_spec);
  1960.       expr_decl = build_nt (ARRAY_REF, DECL_NAME (decl), NULLT);
  1961.       decl = start_decl (expr_decl, decl_specs, 1);
  1962.       end_temporary_allocation ();
  1963.       string_expr = my_build_string (IDENTIFIER_LENGTH (string) + 1,
  1964.                 IDENTIFIER_POINTER (string));
  1965.       finish_decl (decl, string_expr, NULLT);
  1966.     }
  1967.  
  1968.   for (chain = meth_var_names_chain; chain; chain = TREE_CHAIN (chain))
  1969.     {
  1970.       string = TREE_VALUE (chain);
  1971.       decl = TREE_PURPOSE (chain);
  1972.       sc_spec = tree_cons (NULLT, ridpointers[(int) RID_STATIC], NULLT);
  1973.       decl_specs = tree_cons (NULLT, ridpointers[(int) RID_CHAR], sc_spec);
  1974.       expr_decl = build_nt (ARRAY_REF, DECL_NAME (decl), NULLT);
  1975.       decl = start_decl (expr_decl, decl_specs, 1);
  1976.       end_temporary_allocation ();
  1977.       string_expr = my_build_string (IDENTIFIER_LENGTH (string) + 1,
  1978.                 IDENTIFIER_POINTER (string));
  1979.       finish_decl (decl, string_expr, NULLT);
  1980.     }
  1981.  
  1982.   for (chain = meth_var_types_chain; chain; chain = TREE_CHAIN (chain))
  1983.     {
  1984.       string = TREE_VALUE (chain);
  1985.       decl = TREE_PURPOSE (chain);
  1986.       sc_spec = tree_cons (NULLT, ridpointers[(int) RID_STATIC], NULLT);
  1987.       decl_specs = tree_cons (NULLT, ridpointers[(int) RID_CHAR], sc_spec);
  1988.       expr_decl = build_nt (ARRAY_REF, DECL_NAME (decl), NULLT);
  1989.       decl = start_decl (expr_decl, decl_specs, 1);
  1990.       end_temporary_allocation ();
  1991.       string_expr = my_build_string (IDENTIFIER_LENGTH (string) + 1,
  1992.                 IDENTIFIER_POINTER (string));
  1993.       finish_decl (decl, string_expr, NULLT);
  1994.     }
  1995. }
  1996.  
  1997. static tree
  1998. build_selector_reference_decl (name)
  1999.       tree name;
  2000. {
  2001.   tree decl, ident;
  2002.   char buf[256];
  2003.   struct obstack *save_current_obstack = current_obstack;
  2004.   struct obstack *save_rtl_obstack = rtl_obstack;
  2005.   static int idx = 0;
  2006.  
  2007.   sprintf (buf, "_OBJC_SELECTOR_REFERENCES_%d", idx++);
  2008.  
  2009.   /* new stuff */
  2010.   rtl_obstack = current_obstack = &permanent_obstack;
  2011.   ident = get_identifier (buf);
  2012. #ifdef MACHO_PIC
  2013.   machopic_define_ident (ident);
  2014. #endif
  2015.  
  2016.   decl = build_decl (VAR_DECL, ident, selector_type);
  2017.   DECL_EXTERNAL (decl) = 1;
  2018.   TREE_PUBLIC (decl) = 1;
  2019.   TREE_USED (decl) = 1;
  2020.   TREE_READONLY (decl) = 1;
  2021.   DECL_CONTEXT (decl) = 0;
  2022.  
  2023.   make_decl_rtl (decl, 0, 1); /* usually called from `rest_of_decl_compilation' */
  2024.   pushdecl_top_level (decl);  /* our `extended/custom' pushdecl in c-decl.c */
  2025.  
  2026.   current_obstack = save_current_obstack;
  2027.   rtl_obstack = save_rtl_obstack;
  2028.  
  2029.   return decl;
  2030. }
  2031.  
  2032. /* Just a handy wrapper for add_objc_string.  */
  2033.  
  2034. static tree
  2035. build_selector (ident)
  2036.      tree ident;
  2037. {
  2038.   tree expr = add_objc_string (ident, meth_var_names);
  2039.   if (flag_typed_selectors)
  2040.     return expr;
  2041.   else
  2042.     return build_c_cast (selector_type, expr); /* cast! */
  2043. }
  2044.  
  2045. /* Synthesize the following expr: (char *)&_OBJC_STRINGS[<offset>]
  2046.    The cast stops the compiler from issuing the following message:
  2047.    grok.m: warning: initialization of non-const * pointer from const *
  2048.    grok.m: warning: initialization between incompatible pointer types.  */
  2049.  
  2050. static tree
  2051. build_msg_pool_reference (offset)
  2052.      int offset;
  2053. {
  2054.   tree expr = build_int_2 (offset, 0);
  2055.   tree cast;
  2056.  
  2057.   expr = build_array_ref (UOBJC_STRINGS_decl, expr);
  2058.   expr = build_unary_op (ADDR_EXPR, expr, 0);
  2059.  
  2060.   cast = build_tree_list (build_tree_list (NULLT, ridpointers[(int) RID_CHAR]),
  2061.               build1 (INDIRECT_REF, NULLT, NULLT));
  2062.   TREE_TYPE (expr) = groktypename (cast);
  2063.   return expr;
  2064. }
  2065.  
  2066. static tree
  2067. init_selector (offset)
  2068.      int offset;
  2069. {
  2070.   tree expr = build_msg_pool_reference (offset);
  2071.   TREE_TYPE (expr) = selector_type; /* cast */
  2072.   return expr;
  2073. }
  2074.  
  2075. static tree get_proto_encoding PROTO((tree));
  2076.  
  2077.  
  2078. static void
  2079. build_selector_translation_table ()
  2080. {
  2081.   tree sc_spec, decl_specs;
  2082.   tree chain, initlist = NULLT;
  2083.   int offset = 0;
  2084.   tree decl, var_decl, name;
  2085.  
  2086.   /* The corresponding pop_obstacks is in finish_decl,
  2087.      called at the end of this function.  */
  2088.   if (flag_selector_table)
  2089.     push_obstacks_nochange ();
  2090.  
  2091.   for (chain = sel_ref_chain; chain; chain = TREE_CHAIN (chain))
  2092.     {
  2093.       tree expr;
  2094.  
  2095.       expr = build_selector (TREE_VALUE (chain));
  2096.  
  2097.       if (! flag_selector_table)
  2098.     {
  2099.       name = DECL_NAME (TREE_PURPOSE (chain));
  2100.  
  2101.       sc_spec = build_tree_list (NULLT, ridpointers[(int) RID_STATIC]);
  2102.  
  2103.       /* static SEL _OBJC_SELECTOR_REFERENCES_n = ...; */
  2104.       decl_specs = tree_cons (NULLT, selector_type, sc_spec);
  2105.  
  2106.       var_decl = name;
  2107.  
  2108.       /* the `decl' that is returned from start_decl is the one that we
  2109.          forward declared in `build_selector_reference'  */
  2110.       decl = start_decl (var_decl, decl_specs, 1);
  2111.     }
  2112.  
  2113.       /* add one for the '\0' character */
  2114.       offset += IDENTIFIER_LENGTH (TREE_VALUE (chain)) + 1;
  2115.  
  2116.       if (! flag_selector_table)
  2117.     {
  2118.       end_temporary_allocation ();
  2119.       finish_decl (decl, expr, NULLT);
  2120.     }
  2121.       else 
  2122.     {
  2123.       if (flag_typed_selectors)
  2124.         {
  2125.           tree eltlist = NULLT;
  2126.           tree encoding = get_proto_encoding (TREE_PURPOSE (chain));
  2127.           eltlist = tree_cons (NULLT, expr, NULLT);
  2128.           eltlist = tree_cons (NULLT, encoding, eltlist);
  2129.           expr = build_constructor (objc_selector_template,
  2130.                     nreverse (eltlist));
  2131.         }
  2132.       initlist = tree_cons (NULLT, expr, initlist);
  2133.       
  2134.     }
  2135.     }
  2136.  
  2137.   if (flag_selector_table)
  2138.     {
  2139.       /* Cause the variable and its initial value to be actually output.  */
  2140.       DECL_EXTERNAL (UOBJC_SELECTOR_TABLE_decl) = 0;
  2141.       TREE_STATIC (UOBJC_SELECTOR_TABLE_decl) = 1;
  2142.       /* NULL terminate the list and fix the decl for output. */
  2143.       initlist = tree_cons (NULLT, build_int_2 (0, 0), initlist);
  2144.       DECL_INITIAL (UOBJC_SELECTOR_TABLE_decl) = (tree) 1;
  2145.       initlist = build_constructor (TREE_TYPE (UOBJC_SELECTOR_TABLE_decl),
  2146.                     nreverse (initlist));
  2147.       finish_decl (UOBJC_SELECTOR_TABLE_decl, initlist, NULLT);
  2148.     }
  2149. }
  2150.  
  2151. /* sel_ref_chain is a list whose "value" fields will be instances of
  2152.    identifier_node that represent the selector.  */
  2153.  
  2154. static tree
  2155. get_proto_encoding (proto)
  2156.      tree proto;
  2157. {
  2158.   tree encoding;
  2159.   if (proto)
  2160.     {
  2161.       tree tmp_decl;
  2162.  
  2163.       if (! METHOD_ENCODING (proto))
  2164.     {
  2165.       tmp_decl = build_tmp_function_decl ();
  2166.       hack_method_prototype (proto, tmp_decl);
  2167.       encoding = encode_method_prototype (proto, tmp_decl);
  2168.       METHOD_ENCODING (proto) = encoding;
  2169.     }
  2170.       else
  2171.     encoding = METHOD_ENCODING (proto);
  2172.  
  2173.       return add_objc_string (encoding, meth_var_types);
  2174.     }
  2175.   else
  2176.     return build_int_2 (0, 0);
  2177. }
  2178.  
  2179. static tree
  2180. build_typed_selector_reference (ident, proto)
  2181.      tree ident, proto;
  2182. {
  2183.   tree *chain = &sel_ref_chain;
  2184.   tree expr;
  2185.   int index = 0;
  2186.  
  2187.   while (*chain)
  2188.     {
  2189.       if (TREE_PURPOSE (*chain) == ident && TREE_VALUE (*chain) == proto)
  2190.     goto return_at_index;
  2191.       index++;
  2192.       chain = &TREE_CHAIN (*chain);
  2193.     }
  2194.  
  2195.   *chain = perm_tree_cons (proto, ident, NULLT);
  2196.  
  2197.  return_at_index:
  2198.   expr = build_unary_op (ADDR_EXPR,
  2199.              build_array_ref (UOBJC_SELECTOR_TABLE_decl,
  2200.                       build_int_2 (index, 0)),
  2201.              1);
  2202.   return build_c_cast (selector_type, expr);
  2203. }
  2204.  
  2205. static tree
  2206. build_selector_reference (ident)
  2207.      tree ident;
  2208. {
  2209.   tree *chain = &sel_ref_chain;
  2210.   tree expr;
  2211.   int index = 0;
  2212.  
  2213.   while (*chain)
  2214.     {
  2215.       if (TREE_VALUE (*chain) == ident)
  2216.     return ((flag_selector_table == 0)
  2217.         ? TREE_PURPOSE (*chain)
  2218.         : build_array_ref (UOBJC_SELECTOR_TABLE_decl,
  2219.                    build_int_2 (index, 0)));
  2220.  
  2221.       index++;
  2222.       chain = &TREE_CHAIN (*chain);
  2223.     }
  2224.  
  2225.   if (flag_selector_table)
  2226.     expr = build_array_ref (UOBJC_SELECTOR_TABLE_decl, 
  2227.                 build_int_2 (index, 0));
  2228.   else
  2229.     expr = build_selector_reference_decl (ident);
  2230.     
  2231.   *chain = perm_tree_cons (expr, ident, NULLT);
  2232.   return expr; 
  2233. }
  2234.  
  2235. static tree
  2236. build_class_reference_decl (name)
  2237.       tree name;
  2238. {
  2239.   tree decl, ident;
  2240.   char buf[256];
  2241.   struct obstack *save_current_obstack = current_obstack;
  2242.   struct obstack *save_rtl_obstack = rtl_obstack;
  2243.   static int idx = 0;
  2244.  
  2245.   sprintf (buf, "_OBJC_CLASS_REFERENCES_%d", idx++);
  2246.  
  2247.   /* new stuff */
  2248.   rtl_obstack = current_obstack = &permanent_obstack;
  2249.   ident = get_identifier (buf);
  2250. #ifdef MACHO_PIC
  2251.   machopic_define_ident (ident);
  2252. #endif
  2253.  
  2254.   decl = build_decl (VAR_DECL, ident, objc_class_type);
  2255.   DECL_EXTERNAL (decl) = 1;
  2256.   TREE_PUBLIC (decl) = 1;
  2257.   TREE_USED (decl) = 1;
  2258.   TREE_READONLY (decl) = 1;
  2259.  
  2260.   make_decl_rtl (decl, 0, 1); /* usually called from `rest_of_decl_compilation' */
  2261.   pushdecl_top_level (decl);  /* our `extended/custom' pushdecl in c-decl.c */
  2262.  
  2263.   current_obstack = save_current_obstack;
  2264.   rtl_obstack = save_rtl_obstack;
  2265.  
  2266.   return decl;
  2267. }
  2268.  
  2269. /* Create a class reference, but don't create a variable to reference
  2270.    it.  */
  2271.  
  2272. static void
  2273. add_class_reference (ident)
  2274.      tree ident;
  2275. {
  2276.   tree chain;
  2277.  
  2278.   if ((chain = cls_ref_chain))
  2279.     {
  2280.       tree tail;
  2281.       do
  2282.         {
  2283.       if (ident == TREE_VALUE (chain))
  2284.         return;
  2285.  
  2286.       tail = chain;
  2287.       chain = TREE_CHAIN (chain);
  2288.         }
  2289.       while (chain);
  2290.  
  2291.       /* append to the end of the list */
  2292.       TREE_CHAIN (tail) = perm_tree_cons (NULLT, ident, NULLT);
  2293.     }
  2294.   else
  2295.     cls_ref_chain = perm_tree_cons (NULLT, ident, NULLT);
  2296. }
  2297.  
  2298. /* Get a class reference, creating it if necessary.  Also create the
  2299.    reference variable.  */
  2300.  
  2301. tree
  2302. get_class_reference (ident)
  2303.     tree ident;
  2304. {
  2305.   if (flag_next_runtime)
  2306.     {
  2307.       tree *chain;
  2308.       tree decl;
  2309.  
  2310.       for (chain = &cls_ref_chain; *chain; chain = &TREE_CHAIN (*chain))
  2311.     if (TREE_VALUE (*chain) == ident)
  2312.       {
  2313.         if (! TREE_PURPOSE (*chain))
  2314.           TREE_PURPOSE (*chain) = build_class_reference_decl (ident);
  2315.         return TREE_PURPOSE (*chain);
  2316.       }
  2317.  
  2318.       decl = build_class_reference_decl (ident);
  2319.       *chain = perm_tree_cons (decl, ident, NULLT);
  2320.       return decl;
  2321.     }
  2322.   else
  2323.     {
  2324.       tree params;
  2325.  
  2326.       add_class_reference (ident);
  2327.  
  2328.       params = build_tree_list (NULLT,
  2329.                 my_build_string (IDENTIFIER_LENGTH (ident) + 1,
  2330.                          IDENTIFIER_POINTER (ident)));
  2331.  
  2332.       assemble_external (objc_get_class_decl);
  2333.       return build_function_call (objc_get_class_decl, params);
  2334.     }
  2335. }
  2336.  
  2337. /* sel_refdef_chain is a list whose "value" fields will be instances
  2338.    of identifier_node that represent the selector. It returns the
  2339.    offset of the selector from the beginning of the _OBJC_STRINGS
  2340.    pool. This offset is typically used by init_selector during code
  2341.    generation.
  2342.  
  2343.    For each string section we have a chain which maps identifier nodes
  2344.    to decls for the strings. */
  2345.  
  2346. static tree
  2347. add_objc_string (ident, section)
  2348.      tree ident;
  2349.      enum string_section section;
  2350. {
  2351.   tree *chain, decl;
  2352.  
  2353.   if (section == class_names)
  2354.     chain = &class_names_chain;
  2355.   else if (section == meth_var_names)
  2356.     chain = &meth_var_names_chain;
  2357.   else if (section == meth_var_types)
  2358.     chain = &meth_var_types_chain;
  2359.  
  2360.   while (*chain)
  2361.     {
  2362.       if (TREE_VALUE (*chain) == ident)
  2363.     return build_unary_op (ADDR_EXPR, TREE_PURPOSE (*chain), 1);
  2364.  
  2365.       chain = &TREE_CHAIN (*chain);
  2366.     }
  2367.  
  2368.   decl = build_objc_string_decl (ident, section);
  2369.  
  2370.   *chain = perm_tree_cons (decl, ident, NULLT);
  2371.  
  2372.   return build_unary_op (ADDR_EXPR, decl, 1);
  2373. }
  2374.  
  2375. static tree
  2376. build_objc_string_decl (name, section)
  2377.      tree name;
  2378.      enum string_section section;
  2379. {
  2380.   tree decl, ident;
  2381.   char buf[256];
  2382.   struct obstack *save_current_obstack = current_obstack;
  2383.   struct obstack *save_rtl_obstack = rtl_obstack;
  2384.   static int class_names_idx = 0;
  2385.   static int meth_var_names_idx = 0;
  2386.   static int meth_var_types_idx = 0;
  2387.  
  2388.   if (section == class_names)
  2389.     sprintf (buf, "_OBJC_CLASS_NAME_%d", class_names_idx++);
  2390.   else if (section == meth_var_names)
  2391.     sprintf (buf, "_OBJC_METH_VAR_NAME_%d", meth_var_names_idx++);
  2392.   else if (section == meth_var_types)
  2393.     sprintf (buf, "_OBJC_METH_VAR_TYPE_%d", meth_var_types_idx++);
  2394.  
  2395.   rtl_obstack = current_obstack = &permanent_obstack;
  2396.   ident = get_identifier (buf);
  2397.  
  2398.   decl = build_decl (VAR_DECL, ident, build_array_type (char_type_node, 0));
  2399.   DECL_EXTERNAL (decl) = 1;
  2400.   TREE_PUBLIC (decl) = 1;
  2401.   TREE_USED (decl) = 1;
  2402.   TREE_READONLY (decl) = 1;
  2403.   TREE_CONSTANT (decl) = 1;
  2404.  
  2405.   make_decl_rtl (decl, 0, 1); /* usually called from `rest_of_decl_compilation */
  2406.   pushdecl_top_level (decl);  /* our `extended/custom' pushdecl in c-decl.c */
  2407.  
  2408.   current_obstack = save_current_obstack;
  2409.   rtl_obstack = save_rtl_obstack;
  2410.  
  2411.   return decl;
  2412. }
  2413.  
  2414.  
  2415. void
  2416. objc_declare_alias (alias_ident, class_ident)
  2417.      tree alias_ident;
  2418.      tree class_ident;
  2419. {
  2420.   if (!doing_objc_thang)
  2421.     objc_fatal ();
  2422.  
  2423.   if (is_class_name (class_ident) != class_ident)
  2424.     warning ("Cannot find class `%s'", IDENTIFIER_POINTER (class_ident));
  2425.   else if (is_class_name (alias_ident))
  2426.     warning ("Class `%s' already exists", IDENTIFIER_POINTER (alias_ident));
  2427.   else
  2428.     alias_chain = tree_cons (class_ident, alias_ident, alias_chain);
  2429. }
  2430.  
  2431. void
  2432. objc_declare_class (ident_list)
  2433.      tree ident_list;
  2434. {
  2435.   tree list;
  2436.  
  2437.   if (!doing_objc_thang)
  2438.     objc_fatal ();
  2439.  
  2440.   for (list = ident_list; list; list = TREE_CHAIN (list))
  2441.     {
  2442.       tree ident = TREE_VALUE (list);
  2443.       tree decl;
  2444.  
  2445. #ifdef OBJCPLUS
  2446.       if (((decl = lookup_name (ident)) != 0) && !is_class_name(ident))
  2447. #else
  2448.       if ((decl = lookup_name (ident)) != 0)
  2449. #endif
  2450.     {
  2451.       error ("`%s' redeclared as different kind of symbol",
  2452.           IDENTIFIER_POINTER (ident));
  2453.       error_with_decl (decl, "previous declaration of `%s'");
  2454.     }
  2455.  
  2456.       if (! is_class_name (ident))
  2457.         {
  2458.       tree record;
  2459. #ifdef OBJCPLUS
  2460.       push_lang_context (lang_name_c);
  2461. #endif
  2462.       record = xref_tag (RECORD_TYPE, ident);
  2463. #ifdef OBJCPLUS
  2464.       pop_lang_context ();
  2465. #endif
  2466.       TREE_STATIC_TEMPLATE (record) = 1;
  2467.       class_chain = tree_cons (NULLT, ident, class_chain);
  2468.     }
  2469.     }
  2470. }
  2471.  
  2472. tree
  2473. is_class_name (ident)
  2474.      tree ident;
  2475. {
  2476.   tree chain;
  2477.  
  2478.   if (lookup_interface (ident))
  2479.     return ident;
  2480.  
  2481.   for (chain = class_chain; chain; chain = TREE_CHAIN (chain))
  2482.     {
  2483.       if (ident == TREE_VALUE (chain))
  2484.     return ident;
  2485.     }
  2486.  
  2487.   for (chain = alias_chain; chain; chain = TREE_CHAIN (chain))
  2488.     {
  2489.       if (ident == TREE_VALUE (chain))
  2490.     return TREE_PURPOSE (chain);
  2491.     }
  2492.  
  2493.   return 0;
  2494. }
  2495.  
  2496. tree
  2497. lookup_interface (ident)
  2498.      tree ident;
  2499. {
  2500.   tree chain;
  2501.  
  2502.   for (chain = interface_chain; chain; chain = TREE_CHAIN (chain))
  2503.     {
  2504.       if (ident == CLASS_NAME (chain))
  2505.     return chain;
  2506.     }
  2507.   return NULLT;
  2508. }
  2509.  
  2510. static tree
  2511. objc_copy_list (list, head)
  2512.      tree list;
  2513.      tree *head;
  2514. {
  2515.   tree newlist = NULL_TREE, tail = NULL_TREE;
  2516.  
  2517.   while (list)
  2518.     {
  2519.       tail = copy_node (list);
  2520.  
  2521.       /* The following statement fixes a bug when inheriting instance
  2522.      variables that are declared to be bitfields. finish_struct
  2523.      expects to find the width of the bitfield in DECL_INITIAL,
  2524.      which it nulls out after processing the decl of the super
  2525.      class...rather than change the way finish_struct works (which
  2526.      is risky), I create the situation it expects...s.naroff
  2527.      (7/23/89).  */
  2528.  
  2529.       if (DECL_BIT_FIELD (tail) && DECL_INITIAL (tail) == 0)
  2530.     DECL_INITIAL (tail) = build_int_2 (DECL_FIELD_SIZE (tail), 0);
  2531.  
  2532.       newlist = chainon (newlist, tail);
  2533.       list = TREE_CHAIN (list);
  2534.     }
  2535.   *head = newlist;
  2536.   return tail;
  2537. }
  2538.  
  2539. /* Used by: build_private_template, get_class_ivars, and
  2540.    continue_class.  COPY is 1 when called from @defs.  In this case
  2541.    copy all fields.  Otherwise don't copy leaf ivars since we rely on
  2542.    them being side-effected exactly once by finish_struct.  */
  2543.  
  2544. static tree
  2545. build_ivar_chain (interface, copy)
  2546.      tree interface;
  2547.      int copy;
  2548. {
  2549.   tree my_name, super_name, ivar_chain;
  2550.  
  2551.   my_name = CLASS_NAME (interface);
  2552.   super_name = CLASS_SUPER_NAME (interface);
  2553.  
  2554.   /* Possibly copy leaf ivars.  */
  2555.   if (copy)
  2556.     objc_copy_list (CLASS_IVARS (interface), &ivar_chain);
  2557.   else
  2558.     ivar_chain = CLASS_IVARS (interface);
  2559.  
  2560.   while (super_name)
  2561.     {
  2562.       tree op1;
  2563.       tree super_interface = lookup_interface (super_name);
  2564.  
  2565.       if (!super_interface)
  2566.         {
  2567.       /* fatal did not work with 2 args...should fix */
  2568.       error ("Cannot find interface declaration for `%s', superclass of `%s'",
  2569.          IDENTIFIER_POINTER (super_name),
  2570.          IDENTIFIER_POINTER (my_name));
  2571.       exit (34);
  2572.         }
  2573.       if (super_interface == interface)
  2574.         {
  2575.           fatal ("Circular inheritance in interface declaration for `%s'",
  2576.                  IDENTIFIER_POINTER (super_name));
  2577.         }
  2578.       interface = super_interface;
  2579.       my_name = CLASS_NAME (interface);
  2580.       super_name = CLASS_SUPER_NAME (interface);
  2581.  
  2582.       op1 = CLASS_IVARS (interface);
  2583.       if (op1)
  2584.         {
  2585.       tree head, tail = objc_copy_list (op1, &head);
  2586.  
  2587.       /* Prepend super class ivars...make a copy of the list, we
  2588.          do not want to alter the original.  */
  2589.       TREE_CHAIN (tail) = ivar_chain;
  2590.       ivar_chain = head;
  2591.         }
  2592.     }
  2593.   return ivar_chain;
  2594. }
  2595.  
  2596. /* struct <classname> {
  2597.      struct objc_class *isa;
  2598.      ...
  2599.    };  */
  2600.  
  2601. static tree
  2602. build_private_template (class)
  2603.      tree class;
  2604. {
  2605.   tree ivar_context;
  2606.  
  2607.   if (CLASS_STATIC_TEMPLATE (class))
  2608.     {
  2609.       uprivate_record = CLASS_STATIC_TEMPLATE (class);
  2610.       ivar_context = TYPE_FIELDS (CLASS_STATIC_TEMPLATE (class));
  2611.     }
  2612.   else
  2613.     {
  2614.       uprivate_record = start_struct (RECORD_TYPE, CLASS_NAME (class));
  2615.  
  2616.       ivar_context = build_ivar_chain (class, 0);
  2617.  
  2618.       finish_struct (uprivate_record, ivar_context);
  2619.  
  2620.       CLASS_STATIC_TEMPLATE (class) = uprivate_record;
  2621.  
  2622.       /* mark this record as class template - for class type checking */
  2623.       TREE_STATIC_TEMPLATE (uprivate_record) = 1;
  2624.     }
  2625.   instance_type = groktypename (build_tree_list (build_tree_list (NULLT, uprivate_record),
  2626.                          build1 (INDIRECT_REF, NULLT, NULLT)));
  2627.   return ivar_context;
  2628. }
  2629.  
  2630. /* Begin code generation for protocols... */
  2631.  
  2632. /* struct objc_protocol {
  2633.      char *protocol_name;
  2634.      struct objc_protocol **protocol_list;
  2635.      struct objc_method_desc *instance_methods;
  2636.      struct objc_method_desc *class_methods;
  2637.    };  */
  2638.  
  2639. static tree
  2640. build_protocol_template ()
  2641. {
  2642.   tree decl_specs, field_decl, field_decl_chain;
  2643.   tree template;
  2644.  
  2645.   template = start_struct (RECORD_TYPE, get_identifier (UTAG_PROTOCOL));
  2646.  
  2647.   /* struct objc_class *isa; */
  2648.  
  2649.   decl_specs = build_tree_list (NULLT, xref_tag (RECORD_TYPE,
  2650.                     get_identifier (UTAG_CLASS)));
  2651.   field_decl = build1 (INDIRECT_REF, NULLT, get_identifier ("isa"));
  2652.   field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  2653.   field_decl_chain = field_decl;
  2654.  
  2655.   /* char *protocol_name; */
  2656.  
  2657.   decl_specs = build_tree_list (NULLT, ridpointers[(int) RID_CHAR]);
  2658.   field_decl = build1 (INDIRECT_REF, NULLT, get_identifier ("protocol_name"));
  2659.   field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  2660.   chainon (field_decl_chain, field_decl);
  2661.  
  2662.   /* struct objc_protocol **protocol_list; */
  2663.  
  2664.   decl_specs = build_tree_list (NULLT, template);
  2665.   field_decl = build1 (INDIRECT_REF, NULLT, get_identifier ("protocol_list"));
  2666.   field_decl = build1 (INDIRECT_REF, NULLT, field_decl);
  2667.   field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  2668.   chainon (field_decl_chain, field_decl);
  2669.  
  2670.   /* struct objc_method_list *instance_methods; */
  2671.  
  2672.   decl_specs = build_tree_list (NULLT, xref_tag (RECORD_TYPE,
  2673.                     get_identifier (UTAG_METHOD_PROTOTYPE_LIST)));
  2674.   field_decl = build1 (INDIRECT_REF, NULLT, get_identifier ("instance_methods"));
  2675.   field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  2676.   chainon (field_decl_chain, field_decl);
  2677.  
  2678.   /* struct objc_method_list *class_methods; */
  2679.  
  2680.   decl_specs = build_tree_list (NULLT, xref_tag (RECORD_TYPE,
  2681.                     get_identifier (UTAG_METHOD_PROTOTYPE_LIST)));
  2682.   field_decl = build1 (INDIRECT_REF, NULLT, get_identifier ("class_methods"));
  2683.   field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  2684.   chainon (field_decl_chain, field_decl);
  2685.  
  2686. #ifdef OBJC_HPUX_PADDING
  2687.   /* unsigned long risc pad -- for hppa processors; */
  2688.  
  2689.   decl_specs = build_tree_list (NULLT, xref_tag (RECORD_TYPE,
  2690.                     get_identifier (UTAG_METHOD_PROTOTYPE_LIST)));
  2691.   field_decl = build1 (INDIRECT_REF, NULLT, get_identifier ("risc_pad"));
  2692.   field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  2693.   chainon (field_decl_chain, field_decl);
  2694. #endif /* OBJC_HPUX_PADDING */
  2695.  
  2696.   return finish_struct (template, field_decl_chain);
  2697. }
  2698.  
  2699. static tree
  2700. build_descriptor_table_initializer (type, entries)
  2701.      tree type;
  2702.      tree entries;
  2703. {
  2704.   tree initlist = NULLT;
  2705.  
  2706.   do
  2707.     {
  2708.       tree eltlist = NULLT;
  2709.  
  2710.       eltlist = tree_cons (NULLT, build_selector (METHOD_SEL_NAME (entries)), NULLT);
  2711.       eltlist = tree_cons (NULLT, add_objc_string (METHOD_ENCODING (entries), meth_var_types), eltlist);
  2712.  
  2713.       initlist = tree_cons (NULLT, build_constructor (type, nreverse (eltlist)), initlist);
  2714.  
  2715.       entries = TREE_CHAIN (entries);
  2716.     }
  2717.   while (entries);
  2718.  
  2719.   return build_constructor (build_array_type (type, 0), nreverse (initlist));
  2720. }
  2721.  
  2722. /* struct objc_method_prototype_list {
  2723.      int count;
  2724.      struct objc_method_prototype {
  2725.      SEL name;
  2726.      char *types;
  2727.      } list[1];
  2728.    };  */
  2729.  
  2730. static tree
  2731. build_method_prototype_list_template (list_type, size)
  2732.      tree list_type;
  2733.      int size;
  2734. {
  2735.   tree objc_ivar_list_record;
  2736.   tree decl_specs, field_decl, field_decl_chain;
  2737.  
  2738.   /* generate an unnamed struct definition */
  2739.  
  2740.   objc_ivar_list_record = start_struct (RECORD_TYPE, NULLT);
  2741.  
  2742.   /* int method_count; */
  2743.  
  2744.   decl_specs = build_tree_list (NULLT, ridpointers[(int) RID_INT]);
  2745.   field_decl = get_identifier ("method_count");
  2746.  
  2747.   field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  2748.   field_decl_chain = field_decl;
  2749.  
  2750.   /* struct objc_method method_list[]; */
  2751.  
  2752.   decl_specs = build_tree_list (NULLT, list_type);
  2753.   field_decl = build_nt (ARRAY_REF, get_identifier ("method_list"),
  2754.              build_int_2 (size, 0));
  2755.  
  2756.   field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  2757.   chainon (field_decl_chain, field_decl);
  2758.  
  2759.   finish_struct (objc_ivar_list_record, field_decl_chain);
  2760.  
  2761.   return objc_ivar_list_record;
  2762. }
  2763.  
  2764. static tree
  2765. build_method_prototype_template ()
  2766. {
  2767.   tree proto_record;
  2768.   tree decl_specs, field_decl, field_decl_chain;
  2769.  
  2770.   proto_record = start_struct (RECORD_TYPE, get_identifier (UTAG_METHOD_PROTOTYPE));
  2771.  
  2772. #ifdef OBJC_INT_SELECTORS
  2773.   /* unsigned int _cmd; */
  2774.   decl_specs = tree_cons (NULLT, ridpointers[(int) RID_UNSIGNED], NULLT);
  2775.   decl_specs = tree_cons (NULLT, ridpointers[(int) RID_INT], decl_specs);
  2776.   field_decl = get_identifier ("_cmd");
  2777. #else /* OBJC_INT_SELECTORS */
  2778.   /* struct objc_selector *_cmd; */
  2779.   decl_specs = tree_cons (NULLT, xref_tag (RECORD_TYPE,
  2780.                   get_identifier (TAG_SELECTOR)), NULLT);
  2781.   field_decl = build1 (INDIRECT_REF, NULLT, get_identifier ("_cmd"));
  2782. #endif /* OBJC_INT_SELECTORS */
  2783.  
  2784.   field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  2785.   field_decl_chain = field_decl;
  2786.  
  2787.   decl_specs = tree_cons (NULLT, ridpointers[(int) RID_CHAR], NULLT);
  2788.   field_decl = build1 (INDIRECT_REF, NULLT, get_identifier ("method_types"));
  2789.   field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  2790.   chainon (field_decl_chain, field_decl);
  2791.  
  2792.   finish_struct (proto_record, field_decl_chain);
  2793.  
  2794.   return proto_record;
  2795. }
  2796.  
  2797. /* True if last call to forwarding_offset yielded a register offset */
  2798. static int offset_is_register;
  2799.  
  2800. static int
  2801. forwarding_offset (parm)
  2802.       tree parm;
  2803. {
  2804.   int offset_in_bytes;
  2805.  
  2806.   if (GET_CODE (DECL_INCOMING_RTL (parm)) == MEM)
  2807.     {
  2808.       rtx addr = XEXP (DECL_INCOMING_RTL (parm), 0);
  2809.  
  2810.       /* ??? Here we assume that the parm address is indexed
  2811.       off the frame pointer or arg pointer.
  2812.       If that is not true, we produce meaningless results,
  2813.       but do not crash.  */
  2814.       if (GET_CODE (addr) == PLUS
  2815.       && GET_CODE (XEXP (addr, 1)) == CONST_INT)
  2816.     offset_in_bytes = INTVAL (XEXP (addr, 1));
  2817.       else
  2818.     offset_in_bytes = 0;
  2819.  
  2820.       if (flag_next_runtime)
  2821.     offset_in_bytes += OBJC_FORWARDING_STACK_OFFSET;
  2822.       offset_is_register = 0;
  2823.     }
  2824.   else if (GET_CODE (DECL_INCOMING_RTL (parm)) == REG)
  2825.     {
  2826.       int regno = REGNO (DECL_INCOMING_RTL (parm));
  2827. #ifdef OBJC_FORWARDING_REG_OFFSET
  2828.       if (flag_next_runtime)
  2829.     {
  2830.       OBJC_FORWARDING_REG_OFFSET (offset_is_register, offset_in_bytes, regno);
  2831.     }
  2832.       else
  2833. #endif
  2834.     {
  2835.       offset_in_bytes = apply_args_register_offset (regno);
  2836.       offset_is_register = 1;
  2837.     }
  2838.     }
  2839.   else
  2840.     return 0;
  2841.  
  2842.   /* This is the case where the parm is passed as an int or double
  2843.       and it is converted to a char, short or float and stored back
  2844.       in the parmlist.  In this case, describe the parm
  2845.       with the variable's declared type, and adjust the address
  2846.       if the least significant bytes (which we are using) are not
  2847.       the first ones.  */
  2848. #if BYTES_BIG_ENDIAN
  2849.   if (TREE_TYPE (parm) != DECL_ARG_TYPE (parm))
  2850.     offset_in_bytes += (GET_MODE_SIZE (TYPE_MODE (DECL_ARG_TYPE (parm)))
  2851.             - GET_MODE_SIZE (GET_MODE (DECL_RTL (parm))));
  2852. #endif
  2853.  
  2854.   return offset_in_bytes;
  2855. }
  2856.  
  2857. static tree
  2858. encode_method_prototype (method_decl, func_decl)
  2859.       tree method_decl;
  2860.       tree func_decl;
  2861. {
  2862.   tree parms;
  2863.   int stack_size, i;
  2864.   tree user_args;
  2865.   int max_parm_end = 0;
  2866.   char buf[40];
  2867.   tree result;
  2868.  
  2869.   /* `oneway' and 'bycopy', for remote object are the only method qualifiers */
  2870.   encode_type_qualifiers (TREE_PURPOSE (TREE_TYPE (method_decl)));
  2871.  
  2872.   /* C type */
  2873.   encode_type (TREE_TYPE (TREE_TYPE (func_decl)),
  2874.            obstack_object_size (&util_obstack),
  2875.            OBJC_ENCODE_INLINE_DEFS);
  2876.  
  2877.   /* stack size */
  2878.   for (parms = DECL_ARGUMENTS (func_decl); parms;
  2879.        parms = TREE_CHAIN (parms))
  2880.     {
  2881.       int parm_end = forwarding_offset (parms);
  2882.  
  2883.       if (parm_end > 0)
  2884.     parm_end += TREE_INT_CST_LOW (TYPE_SIZE (TREE_TYPE (parms))) / BITS_PER_UNIT;
  2885.       else
  2886.     parm_end = -parm_end;
  2887.  
  2888.       if (max_parm_end < parm_end)
  2889.     max_parm_end = parm_end;
  2890.     }
  2891.  
  2892.   stack_size = max_parm_end - ( flag_next_runtime 
  2893.                    ? OBJC_FORWARDING_MIN_OFFSET 
  2894.                    : 0);
  2895.  
  2896.   sprintf (buf, "%d", stack_size);
  2897.   obstack_grow (&util_obstack, buf, strlen (buf));
  2898.  
  2899.   user_args = METHOD_SEL_ARGS (method_decl);
  2900.  
  2901.   /* argument types */
  2902.   for (parms = DECL_ARGUMENTS (func_decl), i = 0; parms;
  2903.        parms = TREE_CHAIN (parms), i++)
  2904.     {
  2905.       /* process argument qualifiers for user supplied arguments */
  2906.       if (i > 1)
  2907.         {
  2908.       encode_type_qualifiers (TREE_PURPOSE (TREE_TYPE (user_args)));
  2909.       user_args = TREE_CHAIN (user_args);
  2910.      }
  2911.  
  2912.       /* type */
  2913.       encode_type (TREE_TYPE (parms),
  2914.            obstack_object_size (&util_obstack),
  2915.            OBJC_ENCODE_INLINE_DEFS);
  2916.  
  2917.       /* compute offset */
  2918.       sprintf (buf, "%d", forwarding_offset (parms));
  2919.  
  2920.       /* indicate register */
  2921.       if (offset_is_register)
  2922.     obstack_1grow (&util_obstack, '+');
  2923.       
  2924.       obstack_grow (&util_obstack, buf, strlen (buf));
  2925.     }
  2926.  
  2927.   obstack_1grow (&util_obstack, '\0');
  2928.   result = get_identifier (obstack_finish (&util_obstack));
  2929.   obstack_free (&util_obstack, util_firstobj);
  2930.   return result;
  2931. }
  2932.  
  2933. static tree
  2934. generate_descriptor_table (type, name, size, list, proto)
  2935.      tree type;
  2936.      char *name;
  2937.      int size;
  2938.      tree list;
  2939.      tree proto;
  2940. {
  2941.   tree sc_spec, decl_specs, decl, initlist;
  2942.  
  2943.   sc_spec = tree_cons (NULLT, ridpointers[(int) RID_STATIC], NULLT);
  2944.   decl_specs = tree_cons (NULLT, type, sc_spec);
  2945.  
  2946.   decl = start_decl (synth_id_with_class_suffix (name, proto),
  2947.                 decl_specs, 1);
  2948.   end_temporary_allocation ();
  2949.  
  2950.   initlist = build_tree_list (NULLT, build_int_2 (size, 0));
  2951.   initlist = tree_cons (NULLT, list, initlist);
  2952.  
  2953.   finish_decl (decl, build_constructor (type, nreverse (initlist)),
  2954.            NULLT);
  2955.  
  2956.   return decl;
  2957. }
  2958.  
  2959. static void
  2960. generate_method_descriptors (protocol)    /* generate_dispatch_tables */
  2961.   tree protocol;
  2962. {
  2963.   static tree objc_method_prototype_template;
  2964.   tree initlist, chain, method_list_template;
  2965.   tree cast, variable_length_type;
  2966.   int size;
  2967.  
  2968.   if (!objc_method_prototype_template)
  2969.     objc_method_prototype_template = build_method_prototype_template ();
  2970.  
  2971.   cast = build_tree_list (build_tree_list (NULLT, xref_tag (RECORD_TYPE,
  2972.                 get_identifier (UTAG_METHOD_PROTOTYPE_LIST))), NULLT);
  2973.   variable_length_type = groktypename (cast);
  2974.  
  2975.   chain = PROTOCOL_CLS_METHODS (protocol);
  2976.   if (chain)
  2977.     {
  2978.       size = list_length (chain);
  2979.  
  2980.       method_list_template
  2981.     = build_method_prototype_list_template (objc_method_prototype_template,
  2982.                         size);
  2983.  
  2984.       initlist 
  2985.     = build_descriptor_table_initializer (objc_method_prototype_template,
  2986.                           chain);
  2987.  
  2988.       UOBJC_CLASS_METHODS_decl
  2989.     = generate_descriptor_table (method_list_template,
  2990.                      "_OBJC_PROTOCOL_CLASS_METHODS",
  2991.                      size, initlist, protocol);
  2992.       /* cast! */
  2993.       TREE_TYPE (UOBJC_CLASS_METHODS_decl) = variable_length_type;
  2994.     }
  2995.   else
  2996.     UOBJC_CLASS_METHODS_decl = 0;
  2997.  
  2998.   chain = PROTOCOL_NST_METHODS (protocol);
  2999.   if (chain)
  3000.     {
  3001.       size = list_length (chain);
  3002.  
  3003.       method_list_template
  3004.     = build_method_prototype_list_template (objc_method_prototype_template,
  3005.                         size);
  3006.       initlist
  3007.     = build_descriptor_table_initializer (objc_method_prototype_template,
  3008.                           chain);
  3009.  
  3010.       UOBJC_INSTANCE_METHODS_decl
  3011.     = generate_descriptor_table (method_list_template,
  3012.                      "_OBJC_PROTOCOL_INSTANCE_METHODS",
  3013.                      size, initlist, protocol);
  3014.       /* cast! */
  3015.       TREE_TYPE (UOBJC_INSTANCE_METHODS_decl) = variable_length_type;
  3016.     }
  3017.   else
  3018.     UOBJC_INSTANCE_METHODS_decl = 0;
  3019. }
  3020.  
  3021. /* 
  3022.   Generate a temporary FUNCTION_DECL node to be used in hack_method_prototype
  3023.   below. 
  3024.  */
  3025. static tree
  3026. build_tmp_function_decl ()
  3027. {
  3028.   tree decl_specs, expr_decl, parms;
  3029.   static int xxx = 0;
  3030.   char buffer[80];
  3031.  
  3032.   /* struct objc_object *__objc_tmp_xxx (id, SEL, ...); */
  3033.   pushlevel (0);
  3034.   decl_specs = build_tree_list (NULLT, objc_object_reference);
  3035.   push_parm_decl (build_tree_list (decl_specs,
  3036.                    build1 (INDIRECT_REF, NULLT, NULLT)));
  3037.  
  3038.   decl_specs = build_tree_list (NULLT, xref_tag (RECORD_TYPE,
  3039.                       get_identifier (TAG_SELECTOR)));
  3040.   expr_decl = build1 (INDIRECT_REF, NULLT, NULLT);
  3041.  
  3042.   push_parm_decl (build_tree_list (decl_specs, expr_decl));
  3043.   parms = get_parm_info (0);
  3044.   poplevel (0, 0, 0);
  3045.  
  3046.   decl_specs = build_tree_list (NULLT, objc_object_reference);
  3047.   sprintf (buffer, "__objc_tmp_%x", xxx++);
  3048.   expr_decl = build_nt (CALL_EXPR, get_identifier (buffer), parms, NULLT);
  3049.   expr_decl = build1 (INDIRECT_REF, NULLT, expr_decl);
  3050.  
  3051.   return define_decl (expr_decl, decl_specs);
  3052. }
  3053.  
  3054.  
  3055. /* 
  3056.    Generate the prototypes for protocol methods.
  3057.    This is used to generate method encodings for these.
  3058.  
  3059.    NST_METHODS is the method to generate a _DECL node for
  3060.    TMP_DECL is a decl node to be used.  This is also
  3061.      where the return value is given.
  3062.  */
  3063. static void
  3064. hack_method_prototype (nst_methods, tmp_decl)
  3065.      tree nst_methods;
  3066.      tree tmp_decl;
  3067. {
  3068.   tree parms;
  3069. #ifdef OBJCPLUS
  3070.   extern tree last_function_parms;
  3071. #endif /* OBJCPLUS */
  3072.  
  3073.   /* Hack to avoid problem with static typing of self arg. */
  3074.   TREE_SET_CODE (nst_methods, CLASS_METHOD_DECL);
  3075.   start_method_def (nst_methods);
  3076.   TREE_SET_CODE (nst_methods, INSTANCE_METHOD_DECL);
  3077.  
  3078.   if (METHOD_ADD_ARGS (nst_methods) == (tree) 1)
  3079.     parms = get_parm_info (0); /* we have a `, ...' */
  3080.   else
  3081.     parms = get_parm_info (1); /* place a `void_at_end' */
  3082.  
  3083.   poplevel (0, 0, 0);    /* Must be called BEFORE start_function.  */
  3084.  
  3085.   /* Usually called from store_parm_decls -> init_function_start.  */
  3086.  
  3087.   init_emit ();    /* needed to make assign_parms work (with -O).  */
  3088.  
  3089. #ifdef OBJCPLUS
  3090.   /* usually called from start_function()->grokdeclarator(). */ 
  3091.   grokparms (parms, 1);
  3092.   /* usually done by store_parm_decls(). */
  3093.   DECL_ARGUMENTS(tmp_decl) = last_function_parms;
  3094. #else /* OBJCPLUS */
  3095.   DECL_ARGUMENTS(tmp_decl) = TREE_PURPOSE(parms);
  3096. #endif /* OBJCPLUS */
  3097.  
  3098.   {
  3099.     /* Code taken from start_function.  */
  3100.     tree restype = TREE_TYPE (TREE_TYPE (tmp_decl));
  3101.     /* Promote the value to int before returning it.  */
  3102.     if (TREE_CODE (restype) == INTEGER_TYPE
  3103.     && TYPE_PRECISION (restype) < TYPE_PRECISION (integer_type_node))
  3104.       restype = integer_type_node;
  3105.     DECL_RESULT (tmp_decl) = build_decl (RESULT_DECL, 0, restype);
  3106.   }
  3107.  
  3108.   /* Typically called from expand_function_start for function definitions.  */
  3109.   assign_parms (tmp_decl, 0);
  3110.  
  3111.   /* install return type */
  3112.   TREE_TYPE (TREE_TYPE (tmp_decl)) = groktypename (TREE_TYPE (nst_methods));
  3113. }
  3114.  
  3115. static void
  3116. generate_protocol_references (plist)
  3117.      tree plist;
  3118. {
  3119.   tree lproto;
  3120.  
  3121.   /* forward declare protocols referenced */
  3122.   for (lproto = plist; lproto; lproto = TREE_CHAIN (lproto))
  3123.     {
  3124.       tree proto = TREE_VALUE (lproto);
  3125.  
  3126.       if (TREE_CODE (proto) == PROTOCOL_INTERFACE_TYPE
  3127.       && PROTOCOL_NAME (proto))
  3128.     {
  3129.           if (! PROTOCOL_FORWARD_DECL (proto))
  3130.             build_protocol_reference (proto);
  3131.  
  3132.           if (PROTOCOL_LIST (proto))
  3133.             generate_protocol_references (PROTOCOL_LIST (proto));
  3134.         }
  3135.     }
  3136. }
  3137.  
  3138. static void
  3139. generate_protocols ()
  3140. {
  3141.   tree p, tmp_decl, encoding;
  3142.   tree sc_spec, decl_specs, decl;
  3143.   tree initlist, protocol_name_expr, refs_decl, refs_expr;
  3144.   tree cast_type2 = 0;
  3145.  
  3146.   if (! objc_protocol_template)
  3147.     objc_protocol_template = build_protocol_template ();
  3148.  
  3149.   /* if a protocol was directly referenced, pull in indirect references */
  3150.   for (p = protocol_chain; p; p = TREE_CHAIN (p))
  3151.     if (PROTOCOL_FORWARD_DECL (p) && PROTOCOL_LIST (p))
  3152.       generate_protocol_references (PROTOCOL_LIST (p));
  3153.  
  3154.   for (p = protocol_chain; p; p = TREE_CHAIN (p))
  3155.     {
  3156.       tree nst_methods = PROTOCOL_NST_METHODS (p);
  3157.       tree cls_methods = PROTOCOL_CLS_METHODS (p);
  3158.  
  3159.       /* if protocol wasn't referenced, don't generate any code */
  3160.       if (! PROTOCOL_FORWARD_DECL (p))
  3161.     continue;
  3162.  
  3163.       /* Make sure we link in the Protocol class. */
  3164.       add_class_reference (get_identifier (PROTOCOL_OBJECT_CLASS_NAME));
  3165.  
  3166.       while (nst_methods)
  3167.     {
  3168.       if (! METHOD_ENCODING (nst_methods))
  3169.         {
  3170.           tmp_decl = build_tmp_function_decl ();
  3171.           hack_method_prototype (nst_methods, tmp_decl);
  3172.           encoding = encode_method_prototype (nst_methods, tmp_decl);
  3173.           METHOD_ENCODING (nst_methods) = encoding;
  3174.         }
  3175.       nst_methods = TREE_CHAIN (nst_methods);
  3176.     }
  3177.  
  3178.       while (cls_methods)
  3179.     {
  3180.       if (! METHOD_ENCODING (cls_methods))
  3181.         {
  3182.           tmp_decl = build_tmp_function_decl ();
  3183.           hack_method_prototype (cls_methods, tmp_decl);
  3184.           encoding = encode_method_prototype (cls_methods, tmp_decl);
  3185.           METHOD_ENCODING (cls_methods) = encoding;
  3186.         }
  3187.  
  3188.       cls_methods = TREE_CHAIN (cls_methods);
  3189.     }
  3190.       generate_method_descriptors (p);
  3191.  
  3192.       if (PROTOCOL_LIST (p))
  3193.     refs_decl = generate_protocol_list (p);
  3194.       else
  3195.     refs_decl = 0;
  3196.  
  3197.       /* static struct objc_protocol _OBJC_PROTOCOL_<mumble>; */
  3198.  
  3199.       sc_spec = build_tree_list (NULLT, ridpointers[(int) RID_CONST]);
  3200.       /* sc_spec = tree_cons (NULLT, ridpointers[(int) RID_EXTERN], sc_spec); */
  3201.       decl_specs = tree_cons (NULLT, objc_protocol_template, sc_spec);
  3202.  
  3203.       {
  3204.     int flag = flag_traditional;
  3205.     flag_traditional = 1;
  3206.     decl = start_decl (synth_id_with_class_suffix ("_OBJC_PROTOCOL", p),
  3207.                decl_specs, 1);
  3208.     flag_traditional = flag;
  3209.       }
  3210.       end_temporary_allocation ();
  3211.  
  3212.       protocol_name_expr = add_objc_string (PROTOCOL_NAME (p), class_names);
  3213.  
  3214.       if (refs_decl)
  3215.     {
  3216.       if (!cast_type2)
  3217.         cast_type2
  3218.           = groktypename (build_tree_list (build_tree_list (NULLT, objc_protocol_template),
  3219.                            build1 (INDIRECT_REF, NULLT,
  3220.                                build1 (INDIRECT_REF, NULLT, NULLT))));
  3221.  
  3222.       refs_expr = build_unary_op (ADDR_EXPR, refs_decl, 0);
  3223.       TREE_TYPE (refs_expr) = cast_type2;
  3224.     }
  3225.       else
  3226.     refs_expr = build_int_2 (0, 0);
  3227.  
  3228.       /* UOBJC_INSTANCE_METHODS_decl/UOBJC_CLASS_METHODS_decl are set
  3229.      by generate_method_descriptors, which is called above.  */
  3230.       initlist = build_protocol_initializer (TREE_TYPE (decl),
  3231.                          protocol_name_expr, refs_expr,
  3232.                          UOBJC_INSTANCE_METHODS_decl,
  3233.                          UOBJC_CLASS_METHODS_decl);
  3234.       TREE_PUBLIC (decl) = 0; /* bootstrap fix */
  3235.       finish_decl (decl, initlist, NULLT);
  3236.  
  3237.       /* Mark the decl as used to avoid "defined but not used" warning. */
  3238.       TREE_USED (decl) = 1;
  3239.     }
  3240. }
  3241.  
  3242. static tree
  3243. build_protocol_initializer (type, protocol_name, protocol_list,
  3244.                 instance_methods, class_methods)
  3245.      tree type;
  3246.      tree protocol_name;
  3247.      tree protocol_list;
  3248.      tree instance_methods;
  3249.      tree class_methods;
  3250. {
  3251.   tree initlist = NULLT, expr;
  3252.   static tree cast_type = 0;
  3253.  
  3254.   if (!cast_type)
  3255.     cast_type
  3256.       = groktypename (build_tree_list
  3257.               (build_tree_list (NULLT,
  3258.                     xref_tag (RECORD_TYPE,
  3259.                           get_identifier (UTAG_CLASS))),
  3260.                build1 (INDIRECT_REF, NULLT, NULLT)));
  3261.  
  3262.   /* filling the "isa" in with one allows the runtime system to
  3263.      detect that the version change...should remove before final release */
  3264.  
  3265.   expr = build_int_2 (PROTOCOL_VERSION, 0);
  3266.   TREE_TYPE (expr) = cast_type;
  3267.   initlist = tree_cons (NULLT, expr, initlist);
  3268.   initlist = tree_cons (NULLT, protocol_name, initlist);
  3269.   initlist = tree_cons (NULLT, protocol_list, initlist);
  3270.  
  3271.   if (!instance_methods)
  3272.     initlist = tree_cons (NULLT, build_int_2 (0, 0), initlist);
  3273.   else
  3274.     {
  3275.       expr = build_unary_op (ADDR_EXPR, instance_methods, 0);
  3276.       initlist = tree_cons (NULLT, expr, initlist);
  3277.     }
  3278.   if (!class_methods)
  3279.     initlist = tree_cons (NULLT, build_int_2 (0, 0), initlist);
  3280.   else
  3281.     {
  3282.       expr = build_unary_op (ADDR_EXPR, class_methods, 0);
  3283.       initlist = tree_cons (NULLT, expr, initlist);
  3284.     }
  3285.   return build_constructor (type, nreverse (initlist));
  3286. }
  3287. /* end code generation for protocols... */
  3288.  
  3289. /* struct objc_category {
  3290.      char *category_name;
  3291.      char *class_name;
  3292.      struct objc_method_list *instance_methods;
  3293.      struct objc_method_list *class_methods;
  3294.      struct objc_protocol_list *protocols;
  3295.    };   */
  3296.  
  3297. static void
  3298. build_category_template ()
  3299. {
  3300.   tree decl_specs, field_decl, field_decl_chain;
  3301.  
  3302.   objc_category_template = start_struct (RECORD_TYPE,
  3303.                      get_identifier (UTAG_CATEGORY));
  3304.   /* char *category_name; */
  3305.  
  3306.   decl_specs = build_tree_list (NULLT, ridpointers[(int) RID_CHAR]);
  3307.   field_decl = build1 (INDIRECT_REF, NULLT, get_identifier ("category_name"));
  3308.   field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  3309.   field_decl_chain = field_decl;
  3310.  
  3311.   /* char *class_name; */
  3312.  
  3313.   decl_specs = build_tree_list (NULLT, ridpointers[(int) RID_CHAR]);
  3314.   field_decl = build1 (INDIRECT_REF, NULLT, get_identifier ("class_name"));
  3315.   field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  3316.   chainon (field_decl_chain, field_decl);
  3317.  
  3318.   /* struct objc_method_list *instance_methods; */
  3319.  
  3320.   decl_specs = build_tree_list (NULLT, xref_tag (RECORD_TYPE,
  3321.                          get_identifier (UTAG_METHOD_LIST)));
  3322.   field_decl = build1 (INDIRECT_REF, NULLT, get_identifier ("instance_methods"));
  3323.   field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  3324.   chainon (field_decl_chain, field_decl);
  3325.  
  3326.   /* struct objc_method_list *class_methods; */
  3327.  
  3328.   decl_specs = build_tree_list (NULLT, xref_tag (RECORD_TYPE,
  3329.                          get_identifier (UTAG_METHOD_LIST)));
  3330.   field_decl = build1 (INDIRECT_REF, NULLT, get_identifier ("class_methods"));
  3331.   field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  3332.   chainon (field_decl_chain, field_decl);
  3333.  
  3334.   /* struct objc_protocol **protocol_list; */
  3335.  
  3336.   decl_specs = build_tree_list (NULLT, xref_tag (RECORD_TYPE,
  3337.                                           get_identifier (UTAG_PROTOCOL)));
  3338.   field_decl = build1 (INDIRECT_REF, NULLT, get_identifier ("protocol_list"));
  3339.   field_decl = build1 (INDIRECT_REF, NULLT, field_decl);
  3340.   field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT)
  3341. ;
  3342.   chainon (field_decl_chain, field_decl);
  3343.  
  3344.   finish_struct (objc_category_template, field_decl_chain);
  3345. }
  3346.  
  3347. /* struct objc_selector {
  3348.      void *sel_id;
  3349.      char *sel_type;
  3350.    }; */
  3351.  
  3352. static void
  3353. build_selector_template ()
  3354. {
  3355.  
  3356.   tree decl_specs, field_decl, field_decl_chain;
  3357.  
  3358.   objc_selector_template 
  3359.     = start_struct (RECORD_TYPE, get_identifier (UTAG_SELECTOR));
  3360.  
  3361.   /* void *sel_id; */
  3362.  
  3363.   decl_specs = build_tree_list (NULLT, ridpointers[(int) RID_VOID]);
  3364.   field_decl = build1 (INDIRECT_REF, NULLT, get_identifier ("sel_id"));
  3365.   field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  3366.   field_decl_chain = field_decl;
  3367.  
  3368.   /* char *sel_type; */
  3369.  
  3370.   decl_specs = build_tree_list (NULLT, ridpointers[(int) RID_CHAR]);
  3371.   field_decl = build1 (INDIRECT_REF, NULLT, get_identifier ("sel_type"));
  3372.   field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  3373.   chainon (field_decl_chain, field_decl);
  3374.  
  3375.   finish_struct (objc_selector_template, field_decl_chain);
  3376. }
  3377.  
  3378. /* struct objc_class {
  3379.      struct objc_class *isa;
  3380.      struct objc_class *super_class;
  3381.      char *name;
  3382.      long version;
  3383.      long info;
  3384.      long instance_size;
  3385.      struct objc_ivar_list *ivars;
  3386.      struct objc_method_list *methods;
  3387.      if (flag_next_runtime)
  3388.        struct objc_cache *cache;
  3389.      else {
  3390.        struct sarray *dtable;
  3391.        struct objc_class *subclass_list;
  3392.        struct objc_class *sibling_class;
  3393.      }
  3394.      struct objc_protocol_list *protocols;
  3395.    };  */
  3396.  
  3397. static void
  3398. build_class_template ()
  3399. {
  3400.   tree decl_specs, field_decl, field_decl_chain;
  3401.  
  3402.   objc_class_template = start_struct (RECORD_TYPE, get_identifier (UTAG_CLASS));
  3403.  
  3404.   /* struct objc_class *isa; */
  3405.  
  3406.   decl_specs = build_tree_list (NULLT, objc_class_template);
  3407.   field_decl = build1 (INDIRECT_REF, NULLT, get_identifier ("isa"));
  3408.   field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  3409.   field_decl_chain = field_decl;
  3410.  
  3411.   /* struct objc_class *super_class; */
  3412.  
  3413.   decl_specs = build_tree_list (NULLT, objc_class_template);
  3414.   field_decl = build1 (INDIRECT_REF, NULLT, get_identifier ("super_class"));
  3415.   field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  3416.   chainon (field_decl_chain, field_decl);
  3417.  
  3418.   /* char *name; */
  3419.  
  3420.   decl_specs = build_tree_list (NULLT, ridpointers[(int) RID_CHAR]);
  3421.   field_decl = build1 (INDIRECT_REF, NULLT, get_identifier ("name"));
  3422.   field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  3423.   chainon (field_decl_chain, field_decl);
  3424.  
  3425.   /* long version; */
  3426.  
  3427.   decl_specs = build_tree_list (NULLT, ridpointers[(int) RID_LONG]);
  3428.   field_decl = get_identifier ("version");
  3429.   field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  3430.   chainon (field_decl_chain, field_decl);
  3431.  
  3432.   /* long info; */
  3433.  
  3434.   decl_specs = build_tree_list (NULLT, ridpointers[(int) RID_LONG]);
  3435.   field_decl = get_identifier ("info");
  3436.   field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  3437.   chainon (field_decl_chain, field_decl);
  3438.  
  3439.   /* long instance_size; */
  3440.  
  3441.   decl_specs = build_tree_list (NULLT, ridpointers[(int) RID_LONG]);
  3442.   field_decl = get_identifier ("instance_size");
  3443.   field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  3444.   chainon (field_decl_chain, field_decl);
  3445.  
  3446.   /* struct objc_ivar_list *ivars; */
  3447.  
  3448.   decl_specs = build_tree_list (NULLT, xref_tag (RECORD_TYPE,
  3449.                          get_identifier (UTAG_IVAR_LIST)));
  3450.   field_decl = build1 (INDIRECT_REF, NULLT, get_identifier ("ivars"));
  3451.   field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  3452.   chainon (field_decl_chain, field_decl);
  3453.  
  3454.   /* struct objc_method_list *methods; */
  3455.  
  3456.   decl_specs = build_tree_list (NULLT, xref_tag (RECORD_TYPE,
  3457.                          get_identifier (UTAG_METHOD_LIST)));
  3458.   field_decl = build1 (INDIRECT_REF, NULLT, get_identifier ("methods"));
  3459.   field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  3460.   chainon (field_decl_chain, field_decl);
  3461.  
  3462.   if (flag_next_runtime)
  3463.     {
  3464.       /* struct objc_cache *cache; */
  3465.  
  3466.       decl_specs = build_tree_list (NULLT, xref_tag (RECORD_TYPE,
  3467.                              get_identifier ("objc_cache")));
  3468.       field_decl = build1 (INDIRECT_REF, NULLT, get_identifier ("cache"));
  3469.       field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  3470.       chainon (field_decl_chain, field_decl);
  3471.     }
  3472.   else
  3473.     {
  3474.       /* struct sarray *dtable; */
  3475.  
  3476.       decl_specs = build_tree_list (NULLT, xref_tag (RECORD_TYPE,
  3477.                              get_identifier ("sarray")));
  3478.       field_decl = build1 (INDIRECT_REF, NULLT, get_identifier ("dtable"));
  3479.       field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  3480.       chainon (field_decl_chain, field_decl);
  3481.  
  3482.       /* struct objc_class *subclass_list; */
  3483.  
  3484.       decl_specs = build_tree_list (NULLT, objc_class_template);
  3485.       field_decl = build1 (INDIRECT_REF, NULLT, get_identifier ("subclass_list"));
  3486.       field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  3487.       chainon (field_decl_chain, field_decl);
  3488.  
  3489.       /* struct objc_class *sibling_class; */
  3490.  
  3491.       decl_specs = build_tree_list (NULLT, objc_class_template);
  3492.       field_decl = build1 (INDIRECT_REF, NULLT, get_identifier ("sibling_class"));
  3493.       field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  3494.       chainon (field_decl_chain, field_decl);
  3495.     }
  3496.  
  3497.   /* struct objc_protocol **protocol_list; */
  3498.  
  3499.   decl_specs = build_tree_list (NULLT, xref_tag (RECORD_TYPE,
  3500.                       get_identifier (UTAG_PROTOCOL)));
  3501.   field_decl = build1 (INDIRECT_REF, NULLT, get_identifier ("protocol_list"));
  3502.   field_decl = build1 (INDIRECT_REF, NULLT, field_decl);
  3503.   field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  3504.   chainon (field_decl_chain, field_decl);
  3505.  
  3506.  
  3507.   finish_struct (objc_class_template, field_decl_chain);
  3508. }
  3509.  
  3510. /* Generate appropriate forward declarations for an implementation.  */
  3511.  
  3512. static void
  3513. synth_forward_declarations ()
  3514. {
  3515.   tree sc_spec, decl_specs, an_id;
  3516.  
  3517.   /* extern const struct objc_class _OBJC_CLASS_<my_name>; */
  3518.  
  3519.   an_id = synth_id_with_class_suffix ("_OBJC_CLASS", implementation_context);
  3520.  
  3521.   sc_spec = build_tree_list (NULLT, ridpointers[(int) RID_CONST]);
  3522.   sc_spec = tree_cons (NULLT, ridpointers[(int) RID_EXTERN], sc_spec);
  3523.   decl_specs = tree_cons (NULLT, objc_class_template, sc_spec);
  3524.   UOBJC_CLASS_decl = define_decl (an_id, decl_specs);
  3525.   TREE_USED (UOBJC_CLASS_decl) = 1;
  3526.  
  3527.   /* extern const struct objc_class _OBJC_METACLASS_<my_name>; */
  3528.  
  3529.   an_id = synth_id_with_class_suffix ("_OBJC_METACLASS",
  3530.                       implementation_context);
  3531.  
  3532.   UOBJC_METACLASS_decl = define_decl (an_id, decl_specs);
  3533.   TREE_USED (UOBJC_METACLASS_decl) = 1;
  3534.  
  3535.   /* pre-build the following entities - for speed/convenience. */
  3536.  
  3537.   an_id = get_identifier ("super_class");
  3538.   ucls_super_ref = build_component_ref (UOBJC_CLASS_decl, an_id);
  3539.   uucls_super_ref = build_component_ref (UOBJC_METACLASS_decl, an_id);
  3540. }
  3541.  
  3542. static void
  3543. error_with_ivar (message, decl, rawdecl)
  3544.      char *message;
  3545.      tree decl;
  3546.      tree rawdecl;
  3547. {
  3548.   count_error (0);
  3549.  
  3550.   report_error_function (DECL_SOURCE_FILE (decl));
  3551.  
  3552.   fprintf (stderr, "%s:%d: ",
  3553.        DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl));
  3554.   bzero (errbuf, BUFSIZE);
  3555.   fprintf (stderr, "%s `%s'\n", message, gen_declaration (rawdecl, errbuf));
  3556. }
  3557.  
  3558. #define USERTYPE(t)    (TREE_CODE (t) == RECORD_TYPE || \
  3559.              TREE_CODE (t) == UNION_TYPE ||  \
  3560.              TREE_CODE (t) == ENUMERAL_TYPE)
  3561.  
  3562. static void
  3563. check_ivars (inter, imp)
  3564.      tree inter;
  3565.      tree imp;
  3566. {
  3567.   tree intdecls = CLASS_IVARS (inter);
  3568.   tree impdecls = CLASS_IVARS (imp);
  3569.   tree rawintdecls = CLASS_RAW_IVARS (inter);
  3570.   tree rawimpdecls = CLASS_RAW_IVARS (imp);
  3571.  
  3572.   while (1)
  3573.     {
  3574.       tree t1, t2;
  3575.  
  3576.       if (intdecls == 0 && impdecls == 0)
  3577.     break;
  3578.       if (intdecls == 0 || impdecls == 0)
  3579.     {
  3580.       error ("inconsistent instance variable specification");
  3581.       break;
  3582.     }
  3583.       t1 = TREE_TYPE (intdecls); t2 = TREE_TYPE (impdecls);
  3584.  
  3585.       if (!comptypes (t1, t2))
  3586.     {
  3587.       if (DECL_NAME (intdecls) == DECL_NAME (impdecls))
  3588.         {
  3589.           error_with_ivar ("conflicting instance variable type",
  3590.                    impdecls, rawimpdecls);
  3591.           error_with_ivar ("previous declaration of",
  3592.                    intdecls, rawintdecls);
  3593.         }
  3594.       else            /* both the type and the name don't match */
  3595.         {
  3596.           error ("inconsistent instance variable specification");
  3597.           break;
  3598.         }
  3599.     }
  3600.       else if (DECL_NAME (intdecls) != DECL_NAME (impdecls))
  3601.     {
  3602.       error_with_ivar ("conflicting instance variable name",
  3603.                impdecls, rawimpdecls);
  3604.       error_with_ivar ("previous declaration of",
  3605.                intdecls, rawintdecls);
  3606.     }
  3607.       intdecls = TREE_CHAIN (intdecls);
  3608.       impdecls = TREE_CHAIN (impdecls);
  3609.       rawintdecls = TREE_CHAIN (rawintdecls);
  3610.       rawimpdecls = TREE_CHAIN (rawimpdecls);
  3611.     }
  3612. }
  3613.  
  3614. /* Set super_type to the data type node for struct objc_super *,
  3615.    first defining struct objc_super itself.
  3616.    This needs to be done just once per compilation.  */
  3617.  
  3618. static tree
  3619. build_super_template ()
  3620. {
  3621.   tree record, decl_specs, field_decl, field_decl_chain;
  3622.  
  3623.   record = start_struct (RECORD_TYPE, get_identifier (UTAG_SUPER));
  3624.  
  3625.   /* struct objc_object *self; */
  3626.  
  3627.   decl_specs = build_tree_list (NULLT, objc_object_reference);
  3628.   field_decl = get_identifier ("self");
  3629.   field_decl = build1 (INDIRECT_REF, NULLT, field_decl);
  3630.   field_decl = grokfield (input_filename, lineno,
  3631.               field_decl, decl_specs, NULLT);
  3632.   field_decl_chain = field_decl;
  3633.  
  3634.   /* struct objc_class *class; */
  3635.  
  3636.   decl_specs = get_identifier (UTAG_CLASS);
  3637.   decl_specs = build_tree_list (NULLT, xref_tag (RECORD_TYPE, decl_specs));
  3638.   field_decl = build1 (INDIRECT_REF, NULLT, get_identifier ("class"));
  3639.  
  3640.   field_decl = grokfield (input_filename, lineno,
  3641.               field_decl, decl_specs, NULLT);
  3642.   chainon (field_decl_chain, field_decl);
  3643.  
  3644.   finish_struct (record, field_decl_chain);
  3645.  
  3646.   /* `struct objc_super *' */
  3647.   super_type = groktypename (build_tree_list (build_tree_list (NULLT, record),
  3648.                           build1 (INDIRECT_REF,
  3649.                               NULLT, NULLT)));
  3650.   return record;
  3651. }
  3652.  
  3653. /* struct objc_ivar {
  3654.      char *ivar_name;
  3655.      char *ivar_type;
  3656.      int ivar_offset;
  3657.    };  */
  3658.  
  3659. static tree
  3660. build_ivar_template ()
  3661. {
  3662.   tree objc_ivar_id, objc_ivar_record;
  3663.   tree decl_specs, field_decl, field_decl_chain;
  3664.  
  3665.   objc_ivar_id = get_identifier (UTAG_IVAR);
  3666.   objc_ivar_record = start_struct (RECORD_TYPE, objc_ivar_id);
  3667.  
  3668.   /* char *ivar_name; */
  3669.  
  3670.   decl_specs = build_tree_list (NULLT, ridpointers[(int) RID_CHAR]);
  3671.   field_decl = build1 (INDIRECT_REF, NULLT, get_identifier ("ivar_name"));
  3672.  
  3673.   field_decl = grokfield (input_filename, lineno, field_decl,
  3674.               decl_specs, NULLT);
  3675.   field_decl_chain = field_decl;
  3676.  
  3677.   /* char *ivar_type; */
  3678.  
  3679.   decl_specs = build_tree_list (NULLT, ridpointers[(int) RID_CHAR]);
  3680.   field_decl = build1 (INDIRECT_REF, NULLT, get_identifier ("ivar_type"));
  3681.  
  3682.   field_decl = grokfield (input_filename, lineno, field_decl,
  3683.               decl_specs, NULLT);
  3684.   chainon (field_decl_chain, field_decl);
  3685.  
  3686.   /* int ivar_offset; */
  3687.  
  3688.   decl_specs = build_tree_list (NULLT, ridpointers[(int) RID_INT]);
  3689.   field_decl = get_identifier ("ivar_offset");
  3690.  
  3691.   field_decl = grokfield (input_filename, lineno, field_decl,
  3692.               decl_specs, NULLT);
  3693.   chainon (field_decl_chain, field_decl);
  3694.  
  3695.   finish_struct (objc_ivar_record, field_decl_chain);
  3696.  
  3697.   return objc_ivar_record;
  3698. }
  3699.  
  3700. /* struct {
  3701.      int ivar_count;
  3702.      struct objc_ivar ivar_list[ivar_count];
  3703.    };  */
  3704.  
  3705. static tree
  3706. build_ivar_list_template (list_type, size)
  3707.      tree list_type;
  3708.      int size;
  3709. {
  3710.   tree objc_ivar_list_record;
  3711.   tree decl_specs, field_decl, field_decl_chain;
  3712.  
  3713.   objc_ivar_list_record = start_struct (RECORD_TYPE, NULLT);
  3714.  
  3715.   /* int ivar_count; */
  3716.  
  3717.   decl_specs = build_tree_list (NULLT, ridpointers[(int) RID_INT]);
  3718.   field_decl = get_identifier ("ivar_count");
  3719.  
  3720.   field_decl = grokfield (input_filename, lineno, field_decl,
  3721.               decl_specs, NULLT);
  3722.   field_decl_chain = field_decl;
  3723.  
  3724.   /* struct objc_ivar ivar_list[]; */
  3725.  
  3726.   decl_specs = build_tree_list (NULLT, list_type);
  3727.   field_decl = build_nt (ARRAY_REF, get_identifier ("ivar_list"),
  3728.              build_int_2 (size, 0));
  3729.  
  3730.   field_decl = grokfield (input_filename, lineno,
  3731.               field_decl, decl_specs, NULLT);
  3732.   chainon (field_decl_chain, field_decl);
  3733.  
  3734.   finish_struct (objc_ivar_list_record, field_decl_chain);
  3735.  
  3736.   return objc_ivar_list_record;
  3737. }
  3738.  
  3739. /* struct {
  3740.      int method_next;
  3741.      int method_count;
  3742.      struct objc_method method_list[method_count];
  3743.    };  */
  3744.  
  3745. static tree
  3746. build_method_list_template (list_type, size)
  3747.      tree list_type;
  3748.      int size;
  3749. {
  3750.   tree objc_ivar_list_record;
  3751.   tree decl_specs, field_decl, field_decl_chain;
  3752.  
  3753.   objc_ivar_list_record = start_struct (RECORD_TYPE, NULLT);
  3754.  
  3755.   /* int method_next; */
  3756.  
  3757.   decl_specs = build_tree_list (NULLT, 
  3758.                 xref_tag (RECORD_TYPE,
  3759.                       get_identifier (UTAG_METHOD_PROTOTYPE_LIST)));
  3760.   field_decl = build1 (INDIRECT_REF, NULLT, get_identifier ("method_next"));
  3761.   field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  3762.   field_decl_chain = field_decl;
  3763.  
  3764.   /* int method_count; */
  3765.  
  3766.   decl_specs = build_tree_list (NULLT, ridpointers[(int) RID_INT]);
  3767.   field_decl = get_identifier ("method_count");
  3768.  
  3769.   field_decl = grokfield (input_filename, lineno,
  3770.               field_decl, decl_specs, NULLT);
  3771.   chainon (field_decl_chain, field_decl);
  3772.  
  3773.   /* struct objc_method method_list[]; */
  3774.  
  3775.   decl_specs = build_tree_list (NULLT, list_type);
  3776.   field_decl = build_nt (ARRAY_REF, get_identifier ("method_list"),
  3777.              build_int_2 (size, 0));
  3778.  
  3779.   field_decl = grokfield (input_filename, lineno,
  3780.               field_decl, decl_specs, NULLT);
  3781.   chainon (field_decl_chain, field_decl);
  3782.  
  3783.   finish_struct (objc_ivar_list_record, field_decl_chain);
  3784.  
  3785.   return objc_ivar_list_record;
  3786. }
  3787.  
  3788. static tree
  3789. build_ivar_list_initializer (type, field_decl)
  3790.      tree type;
  3791.      tree field_decl;
  3792. {
  3793.   tree initlist = NULLT;
  3794.  
  3795.   do
  3796.     {
  3797.       tree ivar = NULLT;
  3798.  
  3799.       /* set name */
  3800.       if (DECL_NAME (field_decl))
  3801.     ivar = tree_cons (NULLT,
  3802.               add_objc_string (DECL_NAME (field_decl),
  3803.                        meth_var_names),
  3804.               ivar);
  3805.       else
  3806.     /* unnamed bit-field ivar (yuck). */
  3807.     ivar = tree_cons (NULLT, build_int_2 (0, 0), ivar);
  3808.  
  3809.       /* set type */
  3810.       encode_field_decl (field_decl,
  3811.              obstack_object_size (&util_obstack),
  3812.              OBJC_ENCODE_DONT_INLINE_DEFS);
  3813.       obstack_1grow (&util_obstack, 0);    /* null terminate string */
  3814.       ivar
  3815.     = tree_cons
  3816.       (NULLT,
  3817.        add_objc_string (get_identifier (obstack_finish (&util_obstack)),
  3818.                 meth_var_types),
  3819.        ivar);
  3820.       obstack_free (&util_obstack, util_firstobj);
  3821.  
  3822.       /* set offset */
  3823.       ivar
  3824.     = tree_cons
  3825.       (NULLT,
  3826.        build_int_2 ((TREE_INT_CST_LOW (DECL_FIELD_BITPOS (field_decl))
  3827.              / BITS_PER_UNIT),
  3828.             0),
  3829.        ivar);
  3830.  
  3831.       initlist = tree_cons (NULLT, 
  3832.                 build_constructor (type, nreverse (ivar)),
  3833.                 initlist);
  3834.  
  3835.       field_decl = TREE_CHAIN (field_decl);
  3836.     }
  3837.   while (field_decl);
  3838.  
  3839.   return build_constructor (build_array_type (type, 0), nreverse (initlist));
  3840. }
  3841.  
  3842. static tree
  3843. generate_ivars_list (type, name, size, list)
  3844.      tree type;
  3845.      char *name;
  3846.      int size;
  3847.      tree list;
  3848. {
  3849.   tree sc_spec, decl_specs, decl, initlist;
  3850.  
  3851.   sc_spec = tree_cons (NULLT, ridpointers[(int) RID_STATIC], NULLT);
  3852.   decl_specs = tree_cons (NULLT, type, sc_spec);
  3853.  
  3854.   decl = start_decl (synth_id_with_class_suffix (name, implementation_context),
  3855.              decl_specs, 1);
  3856.   end_temporary_allocation ();
  3857.  
  3858.   initlist = build_tree_list (NULLT, build_int_2 (size, 0));
  3859.   initlist = tree_cons (NULLT, list, initlist);
  3860.  
  3861.   finish_decl (decl,
  3862.            build_constructor (TREE_TYPE (decl), nreverse (initlist)),
  3863.            NULLT);
  3864.  
  3865.   return decl;
  3866. }
  3867.  
  3868. static void
  3869. generate_ivar_lists ()
  3870. {
  3871.   tree initlist, ivar_list_template, chain;
  3872.   tree cast, variable_length_type;
  3873.   int size;
  3874.  
  3875.   generating_instance_variables = 1;
  3876.  
  3877.   if (!objc_ivar_template)
  3878.     objc_ivar_template = build_ivar_template ();
  3879.  
  3880.   cast
  3881.     = build_tree_list
  3882.       (build_tree_list (NULLT, xref_tag (RECORD_TYPE,
  3883.                      get_identifier (UTAG_IVAR_LIST))),
  3884.        NULLT);
  3885.   variable_length_type = groktypename (cast);
  3886.  
  3887.   /* only generate class variables for the root of the inheritance
  3888.      hierarchy since these will be the same for every class */
  3889.  
  3890.   if (CLASS_SUPER_NAME (implementation_template) == NULLT
  3891.       && (chain = TYPE_FIELDS (objc_class_template)))
  3892.     {
  3893.       size = list_length (chain);
  3894.  
  3895.       ivar_list_template = build_ivar_list_template (objc_ivar_template, size);
  3896.       initlist = build_ivar_list_initializer (objc_ivar_template, chain);
  3897.  
  3898.       UOBJC_CLASS_VARIABLES_decl
  3899.     = generate_ivars_list (ivar_list_template, "_OBJC_CLASS_VARIABLES",
  3900.                    size, initlist);
  3901.       /* cast! */
  3902.       TREE_TYPE (UOBJC_CLASS_VARIABLES_decl) = variable_length_type;
  3903.     }
  3904.   else
  3905.     UOBJC_CLASS_VARIABLES_decl = 0;
  3906.  
  3907.   chain = CLASS_IVARS (implementation_template);
  3908.   if (chain)
  3909.     {
  3910.       size = list_length (chain);
  3911.       ivar_list_template = build_ivar_list_template (objc_ivar_template, size);
  3912.       initlist = build_ivar_list_initializer (objc_ivar_template, chain);
  3913.  
  3914.       UOBJC_INSTANCE_VARIABLES_decl
  3915.     = generate_ivars_list (ivar_list_template, "_OBJC_INSTANCE_VARIABLES",
  3916.                    size, initlist);
  3917.       /* cast! */
  3918.       TREE_TYPE (UOBJC_INSTANCE_VARIABLES_decl) = variable_length_type;
  3919.     }
  3920.   else
  3921.     UOBJC_INSTANCE_VARIABLES_decl = 0;
  3922.  
  3923.   generating_instance_variables = 0;
  3924. }
  3925.  
  3926. static tree
  3927. build_dispatch_table_initializer (type, entries)
  3928.      tree type;
  3929.      tree entries;
  3930. {
  3931.   tree initlist = NULLT;
  3932.  
  3933.   do
  3934.     {
  3935.       tree elemlist = NULLT;
  3936.  
  3937.       elemlist = tree_cons (NULLT, build_selector (METHOD_SEL_NAME (entries)),
  3938.                 NULLT);
  3939.  
  3940.       elemlist = tree_cons (NULLT, add_objc_string (METHOD_ENCODING (entries),
  3941.                             meth_var_types),
  3942.                 elemlist);
  3943.  
  3944.       elemlist = tree_cons (NULLT, 
  3945.                 build_unary_op (ADDR_EXPR, METHOD_DEFINITION (entries), 1),
  3946.                 elemlist);
  3947.  
  3948.       initlist = tree_cons (NULLT, 
  3949.                 build_constructor (type, nreverse (elemlist)),
  3950.                 initlist);
  3951.  
  3952.       entries = TREE_CHAIN (entries);
  3953.     }
  3954.   while (entries);
  3955.  
  3956.   return build_constructor (build_array_type (type, 0), nreverse (initlist));
  3957. }
  3958.  
  3959. /* To accomplish method prototyping without generating all kinds of
  3960.    inane warnings, the definition of the dispatch table entries were
  3961.    changed from:
  3962.  
  3963.        struct objc_method { SEL _cmd; ...; id (*_imp)(); };
  3964.    to:
  3965.        struct objc_method { SEL _cmd; ...; void *_imp; };  */
  3966.  
  3967. static tree
  3968. build_method_template ()
  3969. {
  3970.   tree _SLT_record;
  3971.   tree decl_specs, field_decl, field_decl_chain;
  3972.  
  3973.   _SLT_record = start_struct (RECORD_TYPE, get_identifier (UTAG_METHOD));
  3974.  
  3975. #ifdef OBJC_INT_SELECTORS
  3976.   /* unsigned int _cmd; */
  3977.   decl_specs = tree_cons (NULLT, ridpointers[(int) RID_UNSIGNED], NULLT);
  3978.   decl_specs = tree_cons (NULLT, ridpointers[(int) RID_INT], decl_specs);
  3979.   field_decl = get_identifier ("_cmd");
  3980. #else /* not OBJC_INT_SELECTORS */
  3981.   /* struct objc_selector *_cmd; */
  3982.   decl_specs = tree_cons (NULLT,
  3983.               xref_tag (RECORD_TYPE,
  3984.                     get_identifier (TAG_SELECTOR)),
  3985.               NULLT);
  3986.   field_decl = build1 (INDIRECT_REF, NULLT, get_identifier ("_cmd"));
  3987. #endif /* not OBJC_INT_SELECTORS */
  3988.  
  3989.   field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  3990.   field_decl_chain = field_decl;
  3991.  
  3992.   decl_specs = tree_cons (NULLT, ridpointers[(int) RID_CHAR], NULLT);
  3993.   field_decl = build1 (INDIRECT_REF, NULLT, get_identifier ("method_types"));
  3994.   field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  3995.   chainon (field_decl_chain, field_decl);
  3996.  
  3997.   /* void *_imp; */
  3998.  
  3999.   decl_specs = tree_cons (NULLT, ridpointers[(int) RID_VOID], NULLT);
  4000.   field_decl = build1 (INDIRECT_REF, NULLT, get_identifier ("_imp"));
  4001.   field_decl = grokfield (input_filename, lineno, field_decl, decl_specs, NULLT);
  4002.   chainon (field_decl_chain, field_decl);
  4003.  
  4004.   finish_struct (_SLT_record, field_decl_chain);
  4005.  
  4006.   return _SLT_record;
  4007. }
  4008.  
  4009.  
  4010. static tree
  4011. generate_dispatch_table (type, name, size, list)
  4012.      tree type;
  4013.      char *name;
  4014.      int size;
  4015.      tree list;
  4016. {
  4017.   tree sc_spec, decl_specs, decl, initlist;
  4018.  
  4019.   sc_spec = tree_cons (NULLT, ridpointers[(int) RID_STATIC], NULLT);
  4020.   decl_specs = tree_cons (NULLT, type, sc_spec);
  4021.  
  4022.   decl = start_decl (synth_id_with_class_suffix (name, implementation_context),
  4023.              decl_specs, 1);
  4024.   end_temporary_allocation ();
  4025.  
  4026.   initlist = build_tree_list (NULLT, build_int_2 (0, 0));
  4027.   initlist = tree_cons (NULLT, build_int_2 (size, 0), initlist);
  4028.   initlist = tree_cons (NULLT, list, initlist);
  4029.  
  4030.   finish_decl (decl,
  4031.            build_constructor (TREE_TYPE (decl), nreverse (initlist)),
  4032.            NULLT);
  4033.  
  4034.   return decl;
  4035. }
  4036.  
  4037. static void
  4038. generate_dispatch_tables ()
  4039. {
  4040.   tree initlist, chain, method_list_template;
  4041.   tree cast, variable_length_type;
  4042.   int size;
  4043.  
  4044.   if (!objc_method_template)
  4045.     objc_method_template = build_method_template ();
  4046.  
  4047.   cast
  4048.     = build_tree_list
  4049.       (build_tree_list (NULLT, xref_tag (RECORD_TYPE,
  4050.                      get_identifier (UTAG_METHOD_LIST))),
  4051.        NULLT);
  4052.   variable_length_type = groktypename (cast);
  4053.  
  4054.   chain = CLASS_CLS_METHODS (implementation_context);
  4055.   if (chain)
  4056.     {
  4057.       size = list_length (chain);
  4058.  
  4059.       method_list_template = build_method_list_template (objc_method_template, size);
  4060.       initlist = build_dispatch_table_initializer (objc_method_template, chain);
  4061.  
  4062.       UOBJC_CLASS_METHODS_decl
  4063.     = generate_dispatch_table (method_list_template,
  4064.                    ((TREE_CODE (implementation_context)
  4065.                      == CLASS_IMPLEMENTATION_TYPE)
  4066.                     ? "_OBJC_CLASS_METHODS"
  4067.                     : "_OBJC_CATEGORY_CLASS_METHODS"),
  4068.                    size, initlist);
  4069.       /* cast! */
  4070.       TREE_TYPE (UOBJC_CLASS_METHODS_decl) = variable_length_type;
  4071.     }
  4072.   else
  4073.     UOBJC_CLASS_METHODS_decl = 0;
  4074.  
  4075.   chain = CLASS_NST_METHODS (implementation_context);
  4076.   if (chain)
  4077.     {
  4078.       size = list_length (chain);
  4079.  
  4080.       method_list_template = build_method_list_template (objc_method_template, size);
  4081.       initlist = build_dispatch_table_initializer (objc_method_template, chain);
  4082.  
  4083.       if (TREE_CODE (implementation_context) == CLASS_IMPLEMENTATION_TYPE)
  4084.     UOBJC_INSTANCE_METHODS_decl
  4085.       = generate_dispatch_table (method_list_template,
  4086.                      "_OBJC_INSTANCE_METHODS",
  4087.                      size, initlist);
  4088.       else
  4089.     /* we have a category */
  4090.     UOBJC_INSTANCE_METHODS_decl
  4091.       = generate_dispatch_table (method_list_template,
  4092.                      "_OBJC_CATEGORY_INSTANCE_METHODS",
  4093.                      size, initlist);
  4094.       /* cast! */
  4095.       TREE_TYPE (UOBJC_INSTANCE_METHODS_decl) = variable_length_type;
  4096.     }
  4097.   else
  4098.     UOBJC_INSTANCE_METHODS_decl = 0;
  4099. }
  4100.  
  4101. static tree
  4102. generate_protocol_list (i_or_p)
  4103.      tree i_or_p;
  4104. {
  4105.   static tree cast_type = 0;
  4106.   tree initlist, decl_specs, sc_spec;
  4107.   tree refs_decl, expr_decl, lproto, e, plist;
  4108.   int size = 0;
  4109.  
  4110.   if (TREE_CODE (i_or_p) == CLASS_INTERFACE_TYPE
  4111.       || TREE_CODE (i_or_p) == CATEGORY_INTERFACE_TYPE)
  4112.     plist = CLASS_PROTOCOL_LIST (i_or_p);
  4113.   else if (TREE_CODE (i_or_p) == PROTOCOL_INTERFACE_TYPE)
  4114.     plist = PROTOCOL_LIST (i_or_p);
  4115.   else
  4116.     abort ();
  4117.  
  4118.   if (!cast_type)
  4119.     cast_type
  4120.       = groktypename
  4121.     (build_tree_list
  4122.      (build_tree_list (NULLT,
  4123.                xref_tag (RECORD_TYPE,
  4124.                      get_identifier (UTAG_PROTOCOL))),
  4125.       build1 (INDIRECT_REF, NULLT, NULLT)));
  4126.  
  4127.   /* compute size */
  4128.   for (lproto = plist; lproto; lproto = TREE_CHAIN (lproto))
  4129.     if (TREE_CODE (TREE_VALUE (lproto)) == PROTOCOL_INTERFACE_TYPE
  4130.     && PROTOCOL_FORWARD_DECL (TREE_VALUE (lproto)))
  4131.       size++;
  4132.  
  4133.   /* build initializer */
  4134.   initlist = tree_cons (NULLT, build_int_2 (0, 0), NULLT);
  4135.  
  4136.   e = build_int_2 (size, 0);
  4137.   TREE_TYPE (e) = cast_type;
  4138.   initlist = tree_cons (NULLT, e, initlist);
  4139.  
  4140.   for (lproto = plist; lproto; lproto = TREE_CHAIN (lproto))
  4141.     {
  4142.       tree pval = TREE_VALUE (lproto);
  4143.  
  4144.       if (TREE_CODE (pval) == PROTOCOL_INTERFACE_TYPE
  4145.       && PROTOCOL_FORWARD_DECL (pval))
  4146.     {
  4147.       e = build_unary_op (ADDR_EXPR, PROTOCOL_FORWARD_DECL (pval), 0);
  4148.       initlist = tree_cons (NULLT, e, initlist);
  4149.     }
  4150.     }
  4151.  
  4152.   /* static struct objc_protocol *refs[n]; */
  4153.  
  4154.   sc_spec = tree_cons (NULLT, ridpointers[(int) RID_STATIC], NULLT);
  4155.   decl_specs = tree_cons (NULLT, xref_tag (RECORD_TYPE,
  4156.                        get_identifier (UTAG_PROTOCOL)),
  4157.               sc_spec);
  4158.  
  4159.   if (TREE_CODE (i_or_p) == PROTOCOL_INTERFACE_TYPE)
  4160.     expr_decl = build_nt (ARRAY_REF,
  4161.               synth_id_with_class_suffix ("_OBJC_PROTOCOL_REFS",
  4162.                               i_or_p),
  4163.               build_int_2 (size + 2, 0));
  4164.   else if (TREE_CODE (i_or_p) == CLASS_INTERFACE_TYPE)
  4165.     expr_decl = build_nt (ARRAY_REF,
  4166.               synth_id_with_class_suffix ("_OBJC_CLASS_PROTOCOLS",
  4167.                               i_or_p),
  4168.               build_int_2 (size + 2, 0));
  4169.   else if (TREE_CODE (i_or_p) == CATEGORY_INTERFACE_TYPE)
  4170.     expr_decl = build_nt (ARRAY_REF,
  4171.               synth_id_with_class_suffix ("_OBJC_CATEGORY_PROTOCOLS",
  4172.                               i_or_p),
  4173.               build_int_2 (size + 2, 0));
  4174.  
  4175.   expr_decl = build1 (INDIRECT_REF, NULLT, expr_decl);
  4176.  
  4177.   refs_decl = start_decl (expr_decl, decl_specs, 1);
  4178.   end_temporary_allocation ();
  4179.  
  4180.   finish_decl (refs_decl, build_constructor (TREE_TYPE (refs_decl),
  4181.                          nreverse (initlist)),
  4182.            NULLT);
  4183.  
  4184.   return refs_decl;
  4185. }
  4186.  
  4187. static tree
  4188. build_category_initializer (type, cat_name, class_name,
  4189.                 instance_methods, class_methods, protocol_list)
  4190.      tree type;
  4191.      tree cat_name;
  4192.      tree class_name;
  4193.      tree instance_methods;
  4194.      tree class_methods;
  4195.      tree protocol_list;
  4196. {
  4197.   tree initlist = NULLT, expr;
  4198.  
  4199.   initlist = tree_cons (NULLT, cat_name, initlist);
  4200.   initlist = tree_cons (NULLT, class_name, initlist);
  4201.  
  4202.   if (!instance_methods)
  4203.     initlist = tree_cons (NULLT, build_int_2 (0, 0), initlist);
  4204.   else
  4205.     {
  4206.       expr = build_unary_op (ADDR_EXPR, instance_methods, 0);
  4207.       initlist = tree_cons (NULLT, expr, initlist);
  4208.     }
  4209.   if (!class_methods)
  4210.     initlist = tree_cons (NULLT, build_int_2 (0, 0), initlist);
  4211.   else
  4212.     {
  4213.       expr = build_unary_op (ADDR_EXPR, class_methods, 0);
  4214.       initlist = tree_cons (NULLT, expr, initlist);
  4215.     }
  4216.  
  4217.   /* protocol_list = */
  4218.   if (!protocol_list)
  4219.      initlist = tree_cons (NULLT, build_int_2 (0, 0), initlist);
  4220.   else
  4221.      {
  4222.     static tree cast_type2;
  4223.  
  4224.     if (!cast_type2)
  4225.       cast_type2
  4226.         = groktypename
  4227.           (build_tree_list
  4228.            (build_tree_list (NULLT,
  4229.                  xref_tag (RECORD_TYPE,
  4230.                        get_identifier (UTAG_PROTOCOL))),
  4231.         build1 (INDIRECT_REF, NULLT,
  4232.             build1 (INDIRECT_REF, NULLT, NULLT))));
  4233.  
  4234.     expr = build_unary_op (ADDR_EXPR, protocol_list, 0);
  4235.     TREE_TYPE (expr) = cast_type2;
  4236.     initlist = tree_cons (NULLT, expr, initlist);
  4237.      }
  4238.  
  4239.   return build_constructor (type, nreverse (initlist));
  4240. }
  4241.  
  4242. /* struct objc_class {
  4243.      struct objc_class *isa;
  4244.      struct objc_class *super_class;
  4245.      char *name;
  4246.      long version;
  4247.      long info;
  4248.      long instance_size;
  4249.      struct objc_ivar_list *ivars;
  4250.      struct objc_method_list *methods;
  4251.      if (flag_next_runtime)
  4252.        struct objc_cache *cache;
  4253.      else {
  4254.        struct sarray *dtable;
  4255.        struct objc_class *subclass_list;
  4256.        struct objc_class *sibling_class;
  4257.      }
  4258.      struct objc_protocol_list *protocols;
  4259.    };  */
  4260.  
  4261. static tree
  4262. build_shared_structure_initializer (type, isa, super, name, size, status,
  4263.                     dispatch_table, ivar_list, protocol_list)
  4264.      tree type;
  4265.      tree isa;
  4266.      tree super;
  4267.      tree name;
  4268.      tree size;
  4269.      int status;
  4270.      tree dispatch_table;
  4271.      tree ivar_list;
  4272.      tree protocol_list;
  4273. {
  4274.   tree initlist = NULLT, expr;
  4275.  
  4276.   /* isa = */
  4277.   initlist = tree_cons (NULLT, isa, initlist);
  4278.  
  4279.   /* super_class = */
  4280.   initlist = tree_cons (NULLT, super, initlist);
  4281.  
  4282.   /* name = */
  4283.   initlist = tree_cons (NULLT, default_conversion (name), initlist);
  4284.  
  4285.   /* version = */
  4286.   initlist = tree_cons (NULLT, build_int_2 (0, 0), initlist);
  4287.  
  4288.   /* info = */
  4289.   initlist = tree_cons (NULLT, build_int_2 (status, 0), initlist);
  4290.  
  4291.   /* instance_size = */
  4292.   initlist = tree_cons (NULLT, size, initlist);
  4293.  
  4294.   /* objc_ivar_list = */
  4295.   if (!ivar_list)
  4296.     initlist = tree_cons (NULLT, build_int_2 (0, 0), initlist);
  4297.   else
  4298.     {
  4299.       expr = build_unary_op (ADDR_EXPR, ivar_list, 0);
  4300.       initlist = tree_cons (NULLT, expr, initlist);
  4301.     }
  4302.  
  4303.   /* objc_method_list = */
  4304.   if (!dispatch_table)
  4305.     initlist = tree_cons (NULLT, build_int_2 (0, 0), initlist);
  4306.   else
  4307.     {
  4308.       expr = build_unary_op (ADDR_EXPR, dispatch_table, 0);
  4309.       initlist = tree_cons (NULLT, expr, initlist);
  4310.     }
  4311.  
  4312.   if (flag_next_runtime)
  4313.     /* method_cache = */
  4314.     initlist = tree_cons (NULLT, build_int_2 (0, 0), initlist);
  4315.   else
  4316.     {
  4317.       /* dtable = */
  4318.       initlist = tree_cons (NULLT, build_int_2 (0, 0), initlist);
  4319.  
  4320.       /* subclass_list = */
  4321.       initlist = tree_cons (NULLT, build_int_2 (0, 0), initlist);
  4322.  
  4323.       /* sibling_class = */
  4324.       initlist = tree_cons (NULLT, build_int_2 (0, 0), initlist);
  4325.     }
  4326.  
  4327.   /* protocol_list = */
  4328.   if (! protocol_list)
  4329.     initlist = tree_cons (NULLT, build_int_2 (0, 0), initlist);
  4330.   else
  4331.      {
  4332.      static tree cast_type2;
  4333.  
  4334.      if (!cast_type2)
  4335.         cast_type2
  4336.       = groktypename
  4337.         (build_tree_list
  4338.          (build_tree_list (NULLT,
  4339.                    xref_tag (RECORD_TYPE,
  4340.                      get_identifier (UTAG_PROTOCOL))),
  4341.           build1 (INDIRECT_REF, NULLT,
  4342.               build1 (INDIRECT_REF, NULLT, NULLT))));
  4343.  
  4344.      expr = build_unary_op (ADDR_EXPR, protocol_list, 0);
  4345.      TREE_TYPE (expr) = cast_type2;
  4346.      initlist = tree_cons (NULLT, expr, initlist);
  4347.      }
  4348.  
  4349.   return build_constructor (type, nreverse (initlist));
  4350. }
  4351.  
  4352. /* static struct objc_category _OBJC_CATEGORY_<name> = { ... };  */
  4353. static void
  4354. generate_category (cat)
  4355.      tree cat;
  4356. {
  4357.   tree sc_spec, decl_specs, decl;
  4358.   tree initlist, cat_name_expr, class_name_expr;
  4359.   tree protocol_decl, category;
  4360.  
  4361.   add_class_reference (CLASS_NAME (cat));
  4362.   cat_name_expr = add_objc_string (CLASS_SUPER_NAME (cat), class_names);
  4363.  
  4364.   class_name_expr = add_objc_string (CLASS_NAME (cat), class_names);
  4365.  
  4366.   category = CLASS_CATEGORY_LIST (implementation_template);
  4367.  
  4368.   /* find the category interface from the class it is associated with */
  4369.   while (category)
  4370.     {
  4371.       if (CLASS_SUPER_NAME (cat) == CLASS_SUPER_NAME (category))
  4372.     break;
  4373.       category = CLASS_CATEGORY_LIST (category);
  4374.     }
  4375.  
  4376.   if (category && CLASS_PROTOCOL_LIST (category))
  4377.     {
  4378.       generate_protocol_references (CLASS_PROTOCOL_LIST (category));
  4379.       protocol_decl = generate_protocol_list (category);
  4380.     }
  4381.   else
  4382.     protocol_decl = 0;
  4383.  
  4384.   sc_spec = tree_cons (NULLT, ridpointers[(int) RID_STATIC], NULLT);
  4385.   decl_specs = tree_cons (NULLT, objc_category_template, sc_spec);
  4386.  
  4387.   decl = start_decl (synth_id_with_class_suffix ("_OBJC_CATEGORY",
  4388.                          implementation_context),
  4389.              decl_specs, 1);
  4390.   end_temporary_allocation ();
  4391.  
  4392.   initlist = build_category_initializer (TREE_TYPE (decl),
  4393.                      cat_name_expr, class_name_expr,
  4394.                      UOBJC_INSTANCE_METHODS_decl,
  4395.                      UOBJC_CLASS_METHODS_decl,
  4396.                      protocol_decl);
  4397.  
  4398.   TREE_USED (decl) = 1;
  4399.   finish_decl (decl, initlist, NULLT);
  4400. }
  4401.  
  4402. /* const struct objc_class _OBJC_METACLASS_Foo={ ... };
  4403.    const struct objc_class _OBJC_CLASS_Foo={ ... };  */
  4404.  
  4405. static void
  4406. generate_shared_structures ()
  4407. {
  4408.   tree sc_spec, decl_specs, decl;
  4409.   tree name_expr, super_expr, root_expr;
  4410.   tree my_root_id = NULLT, my_super_id = NULLT;
  4411.   tree cast_type, initlist, protocol_decl;
  4412.  
  4413.   my_super_id = CLASS_SUPER_NAME (implementation_template);
  4414.   if (my_super_id)
  4415.     {
  4416.       add_class_reference (my_super_id);
  4417.  
  4418.       /* Compute "my_root_id" - this is required for code generation.
  4419.          the "isa" for all meta class structures points to the root of
  4420.          the inheritance hierarchy (e.g. "__Object")...  */
  4421.       my_root_id = my_super_id;
  4422.       do
  4423.     {
  4424.       tree my_root_int = lookup_interface (my_root_id);
  4425.  
  4426.       if (my_root_int && CLASS_SUPER_NAME (my_root_int))
  4427.         my_root_id = CLASS_SUPER_NAME (my_root_int);
  4428.       else
  4429.         break;
  4430.     }
  4431.       while (1);
  4432.     }
  4433.   else                /* no super class */
  4434.     {
  4435.       my_root_id = CLASS_NAME (implementation_template);
  4436.     }
  4437.  
  4438.   cast_type
  4439.     = groktypename (build_tree_list (build_tree_list (NULLT,
  4440.                               objc_class_template),
  4441.                      build1 (INDIRECT_REF, NULLT, NULLT)));
  4442.  
  4443.   name_expr = add_objc_string (CLASS_NAME (implementation_template),
  4444.                    class_names);
  4445.  
  4446.   /* install class `isa' and `super' pointers at runtime */
  4447.   if (my_super_id)
  4448.     {
  4449.       super_expr = add_objc_string (my_super_id, class_names);
  4450.       super_expr = build_c_cast (cast_type, super_expr); /* cast! */
  4451.     }
  4452.   else
  4453.     super_expr = build_int_2 (0, 0);
  4454.  
  4455.   root_expr = add_objc_string (my_root_id, class_names);
  4456.   root_expr = build_c_cast (cast_type, root_expr); /* cast! */
  4457.  
  4458.   if (CLASS_PROTOCOL_LIST (implementation_template))
  4459.     {
  4460.       generate_protocol_references (CLASS_PROTOCOL_LIST (implementation_template));
  4461.       protocol_decl = generate_protocol_list (implementation_template);
  4462.     }
  4463.   else
  4464.     protocol_decl = 0;
  4465.  
  4466.   /* const struct objc_class _OBJC_METACLASS_Foo = { ... }; */
  4467.  
  4468.   sc_spec = build_tree_list (NULLT, ridpointers[(int) RID_CONST]);
  4469.   decl_specs = tree_cons (NULLT, objc_class_template, sc_spec);
  4470.  
  4471.   decl = start_decl (DECL_NAME (UOBJC_METACLASS_decl), decl_specs, 1);
  4472.   end_temporary_allocation ();
  4473.  
  4474.   initlist
  4475.     = build_shared_structure_initializer
  4476.       (TREE_TYPE (decl),
  4477.        root_expr, super_expr, name_expr,
  4478.        build_int_2 ((TREE_INT_CST_LOW (TYPE_SIZE (objc_class_template))
  4479.             / BITS_PER_UNIT),
  4480.             0),
  4481.        2 /*CLS_META*/,
  4482.        UOBJC_CLASS_METHODS_decl,
  4483.        UOBJC_CLASS_VARIABLES_decl,
  4484.        protocol_decl);
  4485.  
  4486.   TREE_PUBLIC (decl) = 0; /* bootstrap fix */
  4487.   finish_decl (decl, initlist, NULLT);
  4488.  
  4489.   /* const struct objc_class _OBJC_CLASS_Foo={ ... }; */
  4490.  
  4491.   decl = start_decl (DECL_NAME (UOBJC_CLASS_decl), decl_specs, 1);
  4492.   end_temporary_allocation ();
  4493.  
  4494.   initlist
  4495.     = build_shared_structure_initializer
  4496.       (TREE_TYPE (decl),
  4497.        build_unary_op (ADDR_EXPR, UOBJC_METACLASS_decl, 0),
  4498.        super_expr, name_expr,
  4499.        build_int_2 ((TREE_INT_CST_LOW (TYPE_SIZE (CLASS_STATIC_TEMPLATE (implementation_template)))
  4500.             / BITS_PER_UNIT),
  4501.             0),
  4502.        1 /*CLS_FACTORY*/,
  4503.        UOBJC_INSTANCE_METHODS_decl,
  4504.        UOBJC_INSTANCE_VARIABLES_decl,
  4505.        protocol_decl);
  4506.       
  4507.   TREE_PUBLIC (decl) = 0; /* bootstrap fix */
  4508.   finish_decl (decl, initlist, NULLT);
  4509. }
  4510.  
  4511. static tree
  4512. synth_id_with_class_suffix (preamble, ctxt)
  4513.      char *preamble;
  4514.      tree ctxt;
  4515. {
  4516.   char *string;
  4517.   if (TREE_CODE (ctxt) == CLASS_IMPLEMENTATION_TYPE
  4518.       || TREE_CODE (ctxt) == CLASS_INTERFACE_TYPE)
  4519.     {
  4520.       char *class_name
  4521.     = IDENTIFIER_POINTER (CLASS_NAME (implementation_context));
  4522.       string = (char *) alloca (strlen (preamble) + strlen (class_name) + 3);
  4523.       sprintf (string, "%s_%s", preamble,
  4524.            IDENTIFIER_POINTER (CLASS_NAME (ctxt)));
  4525.     }
  4526.   else if (TREE_CODE (ctxt) == CATEGORY_IMPLEMENTATION_TYPE
  4527.        || TREE_CODE (ctxt) == CATEGORY_INTERFACE_TYPE)
  4528.     {
  4529.       /* we have a category */
  4530.       char *class_name
  4531.     = IDENTIFIER_POINTER (CLASS_NAME (implementation_context));
  4532.       char *class_super_name
  4533.     = IDENTIFIER_POINTER (CLASS_SUPER_NAME (implementation_context));
  4534.       string = (char *) alloca (strlen (preamble)
  4535.                 + strlen (class_name)
  4536.                 + strlen (class_super_name)
  4537.                 + 3);
  4538.       sprintf (string, "%s_%s_%s", preamble, class_name, class_super_name);
  4539.     }
  4540.   else if (TREE_CODE (ctxt) == PROTOCOL_INTERFACE_TYPE)
  4541.     {
  4542.       char *protocol_name = IDENTIFIER_POINTER (PROTOCOL_NAME (ctxt));
  4543.       string = (char *) alloca (strlen (preamble) + strlen (protocol_name) + 3);
  4544.       sprintf (string, "%s_%s", preamble, protocol_name);
  4545.     }
  4546.   return get_identifier (string);
  4547. }
  4548.  
  4549. static int
  4550. is_objc_type_qualifier (node)
  4551.      tree node;
  4552. {
  4553.   return (TREE_CODE (node) == IDENTIFIER_NODE
  4554.       && (node == ridpointers [(int) RID_CONST]
  4555.           || node == ridpointers [(int) RID_VOLATILE]
  4556.           || node == ridpointers [(int) RID_IN]
  4557.           || node == ridpointers [(int) RID_OUT]
  4558.           || node == ridpointers [(int) RID_INOUT]
  4559.           || node == ridpointers [(int) RID_BYCOPY]
  4560.           || node == ridpointers [(int) RID_ONEWAY]));
  4561. }
  4562.  
  4563. /* If type is empty or only type qualifiers are present, add default
  4564.    type of id (otherwise grokdeclarator will default to int).  */
  4565.  
  4566. static tree
  4567. adjust_type_for_id_default (type, is_return_type)
  4568.      tree type;
  4569. {
  4570.   tree declspecs, chain, result = 0;
  4571.   int synth_void = 0;
  4572.  
  4573.   if (!type)
  4574.     return build_tree_list (build_tree_list (NULLT, objc_object_reference),
  4575.                 build1 (INDIRECT_REF, NULLT, NULLT));
  4576.  
  4577.   declspecs = TREE_PURPOSE (type);
  4578.  
  4579.   /* Determine if a typespec is present.  */
  4580.   for (chain = declspecs;
  4581.        chain;
  4582.        chain = TREE_CHAIN (chain))
  4583.     {
  4584.       tree node = TREE_VALUE (chain);
  4585.  
  4586.       if (!is_objc_type_qualifier (node))
  4587.     {
  4588.       result = type;
  4589.       break;
  4590.     }
  4591.       else if (node == ridpointers [(int) RID_ONEWAY])
  4592.     synth_void = 1;
  4593.     }
  4594.  
  4595.   if (!result)
  4596.     {
  4597.       if (is_return_type && synth_void)
  4598.     result = build_tree_list (tree_cons (NULLT, 
  4599.                          ridpointers [(int) RID_VOID],
  4600.                          declspecs),
  4601.                   NULLT);
  4602.       else
  4603.     result = build_tree_list (tree_cons (NULLT, 
  4604.                          objc_object_reference, 
  4605.                          declspecs),
  4606.                   build1 (INDIRECT_REF, NULLT, NULLT));
  4607.     }
  4608.   
  4609.   /* Now, scan the declspecs of the resulting type, and
  4610.      issue warnings for incorrect usage.  */
  4611.   {
  4612.     int inout_seen = 0;
  4613.     int pointerp = 0;
  4614.  
  4615.     if (TREE_VALUE (result))
  4616.       pointerp = (TREE_CODE (TREE_VALUE (result)) == INDIRECT_REF);
  4617.  
  4618.     for (chain = declspecs;
  4619.      chain;
  4620.      chain = TREE_CHAIN (chain))
  4621.       {
  4622.     tree node = TREE_VALUE (chain);
  4623.     
  4624.     if (node == ridpointers [(int) RID_OUT]
  4625.         || node == ridpointers [(int) RID_INOUT]
  4626.         || node == ridpointers [(int) RID_IN])
  4627.       inout_seen++;
  4628.  
  4629.     if (!pointerp)
  4630.       {
  4631.         if (node == ridpointers [(int) RID_OUT]
  4632.         || node == ridpointers [(int) RID_INOUT])
  4633.           warning ("qualifiers \"out\" and \"inout\" are for pointers only");
  4634.       }
  4635.  
  4636.     else if (!is_return_type && node == ridpointers [(int) RID_ONEWAY])
  4637.       warning ("qualifier \"oneway\" is for return types only");
  4638.       }    
  4639.  
  4640.     if (inout_seen > 1)
  4641.       warning ("inconsistent combination of \"in\", \"out\", and \"inout\"");
  4642.  
  4643.     if (inout_seen && is_return_type)
  4644.       warning ("qualifiers \"in\", \"out\", and \"inout\" are for arguments only");
  4645.       
  4646.   }
  4647.  
  4648.   return result;
  4649.   
  4650. }
  4651.  
  4652. /*   usage:
  4653.           keyworddecl:
  4654.               selector ':' '(' typename ')' identifier
  4655.   
  4656.      purpose:
  4657.           transform an Objective-C keyword argument into
  4658.           the C equivalent parameter declarator.
  4659.   
  4660.      in:    key_name, an "identifier_node" (optional).
  4661.           arg_type, a  "tree_list" (optional).
  4662.           arg_name, an "identifier_node".
  4663.   
  4664.      note:    it would be really nice to strongly type the preceding
  4665.           arguments in the function prototype; however, then i
  4666.           could not use the "accessor" macros defined in "tree.h".
  4667.   
  4668.      out:    an instance of "keyword_decl".  */
  4669.  
  4670. tree
  4671. build_keyword_decl (key_name, arg_type, arg_name)
  4672.      tree key_name;
  4673.      tree arg_type;
  4674.      tree arg_name;
  4675. {
  4676.   tree keyword_decl;
  4677.  
  4678.   /* if no type is specified, default to "id" */
  4679.   arg_type = adjust_type_for_id_default (arg_type, 0);
  4680.  
  4681.   keyword_decl = make_node (KEYWORD_DECL);
  4682.  
  4683.   TREE_TYPE (keyword_decl) = arg_type;
  4684.   KEYWORD_ARG_NAME (keyword_decl) = arg_name;
  4685.   KEYWORD_KEY_NAME (keyword_decl) = key_name;
  4686.  
  4687.   return keyword_decl;
  4688. }
  4689.  
  4690. /* Given a chain of keyword_decl's, synthesize the full keyword selector.  */
  4691. static tree
  4692. build_keyword_selector (selector)
  4693.      tree selector;
  4694. {
  4695.   int len = 0;
  4696.   tree key_chain, key_name;
  4697.   char *buf;
  4698.  
  4699.   for (key_chain = selector; key_chain; key_chain = TREE_CHAIN (key_chain))
  4700.     {
  4701.       if (TREE_CODE (selector) == KEYWORD_DECL)
  4702.     key_name = KEYWORD_KEY_NAME (key_chain);
  4703.       else if (TREE_CODE (selector) == TREE_LIST)
  4704.     key_name = TREE_PURPOSE (key_chain);
  4705.  
  4706.       if (key_name)
  4707.     len += IDENTIFIER_LENGTH (key_name) + 1;
  4708.       else            /* just a ':' arg */
  4709.     len++;
  4710.     }
  4711.   buf = (char *)alloca (len + 1);
  4712.   bzero (buf, len + 1);
  4713.  
  4714.   for (key_chain = selector; key_chain; key_chain = TREE_CHAIN (key_chain))
  4715.     {
  4716.       if (TREE_CODE (selector) == KEYWORD_DECL)
  4717.     key_name = KEYWORD_KEY_NAME (key_chain);
  4718.       else if (TREE_CODE (selector) == TREE_LIST)
  4719.     key_name = TREE_PURPOSE (key_chain);
  4720.  
  4721.       if (key_name)
  4722.     strcat (buf, IDENTIFIER_POINTER (key_name));
  4723.       strcat (buf, ":");
  4724.     }
  4725.   return get_identifier (buf);
  4726. }
  4727.  
  4728. /* used for declarations and definitions */
  4729.  
  4730. tree
  4731. build_method_decl (code, ret_type, selector, add_args)
  4732.      enum tree_code code;
  4733.      tree ret_type;
  4734.      tree selector;
  4735.      tree add_args;
  4736. {
  4737.   tree method_decl;
  4738.  
  4739.   /* if no type is specified, default to "id" */
  4740.   ret_type = adjust_type_for_id_default (ret_type, 1);
  4741.  
  4742.   method_decl = make_node (code);
  4743.   TREE_TYPE (method_decl) = ret_type;
  4744.  
  4745.   /* If we have a keyword selector, create an identifier_node that
  4746.      represents the full selector name (`:' included)...  */
  4747.   if (TREE_CODE (selector) == KEYWORD_DECL)
  4748.     {
  4749.       METHOD_SEL_NAME (method_decl) = build_keyword_selector (selector);
  4750.       METHOD_SEL_ARGS (method_decl) = selector;
  4751.       METHOD_ADD_ARGS (method_decl) = add_args;
  4752.     }
  4753.   else
  4754.     {
  4755.       METHOD_SEL_NAME (method_decl) = selector;
  4756.       METHOD_SEL_ARGS (method_decl) = NULLT;
  4757.       METHOD_ADD_ARGS (method_decl) = NULLT;
  4758.     }
  4759.  
  4760.   return method_decl;
  4761. }
  4762.  
  4763. #define METHOD_DEF 0
  4764. #define METHOD_REF 1
  4765.  
  4766. /* Used by `build_message_expr' and `comp_method_types'.  Return an
  4767.    argument list for method METH.  CONTEXT is either METHOD_DEF or
  4768.    METHOD_REF, saying whether we are trying to define a method or call
  4769.    one.  SUPERFLAG says this is for a send to super; this makes a
  4770.    difference for the NeXT calling sequence in which the lookup and
  4771.    the method call are done together.  */
  4772.  
  4773. static tree
  4774. get_arg_type_list (meth, context, superflag)
  4775.      tree meth;
  4776.      int context;
  4777.      int superflag;
  4778. {
  4779.   tree arglist, akey;
  4780.  
  4781.   /* receiver type */
  4782.   if (flag_next_runtime && superflag)
  4783.     arglist = build_tree_list (NULLT, super_type);
  4784.   else if (context == METHOD_DEF)
  4785.     arglist = build_tree_list (NULLT, TREE_TYPE (self_decl));
  4786.   else
  4787.     arglist = build_tree_list (NULLT, id_type);
  4788.  
  4789.   /* selector type - will eventually change to `int' */
  4790.   chainon (arglist, build_tree_list (NULLT, selector_type));
  4791.  
  4792.   /* build a list of argument types */
  4793.   for (akey = METHOD_SEL_ARGS (meth); akey; akey = TREE_CHAIN (akey))
  4794.     {
  4795.       tree arg_decl = groktypename_in_parm_context (TREE_TYPE (akey));
  4796.       chainon (arglist, build_tree_list (NULLT, TREE_TYPE (arg_decl)));
  4797.     }
  4798.  
  4799.   if (METHOD_ADD_ARGS (meth) == (tree)1)
  4800.     /* We have a `, ...' immediately following the selector,
  4801.        finalize the arglist...simulate get_parm_info (0).  */
  4802.     ;
  4803.   else if (METHOD_ADD_ARGS (meth))
  4804.     {
  4805.       /* we have a variable length selector */
  4806.       tree add_arg_list = TREE_CHAIN (METHOD_ADD_ARGS (meth));
  4807.       chainon (arglist, add_arg_list);
  4808.     }
  4809.   else
  4810.     {
  4811.     /* finalize the arglist...simulate get_parm_info (1) */
  4812. #ifdef OBJCPLUS
  4813.       chainon (arglist, void_list_node);
  4814. #else /* OBJCPLUS */
  4815.       chainon (arglist, build_tree_list (NULLT, void_type_node));
  4816. #endif /* OBJCPLUS */
  4817.     }
  4818.  
  4819.   return arglist;
  4820. }
  4821.  
  4822. static tree
  4823. check_duplicates (hsh)
  4824.      hash hsh;
  4825. {
  4826.   tree meth = NULLT;
  4827.  
  4828.   if (hsh)
  4829.     {
  4830.       meth = hsh->key;
  4831.  
  4832.       if (hsh->list)
  4833.         {
  4834.       /* we have two methods with the same name and different types */
  4835.       attr loop;
  4836.       char type = (TREE_CODE (meth) == INSTANCE_METHOD_DECL) ? '-' : '+';
  4837.  
  4838.       warning ("multiple declarations for method `%s'",
  4839.            IDENTIFIER_POINTER (METHOD_SEL_NAME (meth)));
  4840.  
  4841.       warn_with_method ("using", type, meth);
  4842.       for (loop = hsh->list; loop; loop = loop->next)
  4843.         warn_with_method ("also found", type, loop->value);
  4844.         }
  4845.     }
  4846.   return meth;
  4847. }
  4848.  
  4849. /* If RECEIVER is a class reference, return the identifier node for the
  4850.    referenced class.  RECEIVER is created by get_class_reference, so we
  4851.    check the exact form created depending on which runtimes are used.  */
  4852.  
  4853. static tree
  4854. receiver_is_class_object (receiver)
  4855.       tree receiver;
  4856. {
  4857.   tree chain, exp, arg;
  4858.   if (flag_next_runtime)
  4859.     {
  4860.       /* The receiver is a variable created by build_class_reference_decl.  */
  4861.       if (TREE_CODE (receiver) == VAR_DECL
  4862.       && TREE_TYPE (receiver) == objc_class_type)
  4863.     /* Look up the identifier. */
  4864.     for (chain = cls_ref_chain; chain; chain = TREE_CHAIN (chain))
  4865.       if (TREE_PURPOSE (chain) == receiver)
  4866.         return TREE_VALUE (chain);
  4867.     }
  4868.   else
  4869.     {
  4870.       /* The receiver is a function call that returns an id.  Check if
  4871.      it is a call to objc_getClass, if so, pick up the class name.  */
  4872.       if ((exp = TREE_OPERAND (receiver, 0))
  4873.       && TREE_CODE (exp) == ADDR_EXPR
  4874.       && (exp = TREE_OPERAND (exp, 0))
  4875.       && TREE_CODE (exp) == FUNCTION_DECL
  4876.       && exp == objc_get_class_decl
  4877.       /* we have a call to objc_getClass! */
  4878.       && (arg = TREE_OPERAND (receiver, 1))
  4879.       && TREE_CODE (arg) == TREE_LIST
  4880.       && (arg = TREE_VALUE (arg)))
  4881.     {
  4882.       STRIP_NOPS (arg);
  4883.       if (TREE_CODE (arg) == ADDR_EXPR
  4884.           && (arg = TREE_OPERAND (arg, 0))
  4885.           && TREE_CODE (arg) == STRING_CST)
  4886.         /* finally, we have the class name */
  4887.         return get_identifier (TREE_STRING_POINTER (arg));
  4888.     }
  4889.     }
  4890.   return 0;
  4891. }
  4892.  
  4893. /* If we are currently building a message expr, this holds
  4894.    the identifier of the selector of the message.  This is
  4895.    used when printing warnings about argument mismatches. */
  4896.  
  4897. static tree building_objc_message_expr = 0;
  4898.  
  4899. tree
  4900. maybe_building_objc_message_expr ()
  4901. {
  4902.   return building_objc_message_expr;
  4903. }
  4904.  
  4905. /* Construct an expression for sending a message.
  4906.    MESS has the object to send to in TREE_PURPOSE
  4907.    and the argument list (including selector) in TREE_VALUE.
  4908.  
  4909.    (*(<abstract_decl>(*)())_msg)(receiver, selTransTbl[n], ...);
  4910.    (*(<abstract_decl>(*)())_msgSuper)(receiver, selTransTbl[n], ...);  */
  4911.  
  4912. tree
  4913. build_message_expr (mess)
  4914.      tree mess;
  4915. {
  4916.   tree receiver = TREE_PURPOSE (mess);
  4917.   tree selector, self_object;
  4918.   tree rtype, sel_name;
  4919.   tree args = TREE_VALUE (mess);
  4920.   tree method_params = NULLT;
  4921.   tree method_prototype = NULLT;
  4922.   tree retval;
  4923.   int statically_typed = 0, statically_allocated = 0;
  4924.  
  4925.   tree class_ident = 0;
  4926.  
  4927.   /* 1 if this is sending to the superclass.  */
  4928.   int super;
  4929.  
  4930.   if (!doing_objc_thang)
  4931.     objc_fatal ();
  4932.  
  4933.   if (TREE_CODE (receiver) == ERROR_MARK)
  4934.     return error_mark_node;
  4935.  
  4936.   /* determine receiver type */
  4937.   rtype = TREE_TYPE (receiver);
  4938.   super = IS_SUPER (rtype);
  4939.  
  4940.   if (! super)
  4941.     {
  4942.       if (TREE_STATIC_TEMPLATE (rtype))
  4943.     statically_allocated = 1;
  4944.       else if (TREE_CODE (rtype) == POINTER_TYPE
  4945.            && TREE_STATIC_TEMPLATE (TREE_TYPE (rtype)))
  4946.     statically_typed = 1;
  4947.       else if ((flag_next_runtime
  4948.         || (TREE_CODE (receiver) == CALL_EXPR && IS_ID (rtype)))
  4949.            && (class_ident = receiver_is_class_object (receiver)))
  4950.     ;
  4951.       else if (! IS_ID (rtype)
  4952.            /* Allow any type that matches objc_class_type.  */
  4953.            && ! comptypes (rtype, objc_class_type))
  4954.     {
  4955. #ifdef OBJCPLUS
  4956.       tree converted;
  4957.  
  4958.       converted = convert (id_type, receiver);
  4959.  
  4960.       if (converted != NULLT && converted != error_mark_node)
  4961.         {
  4962.           STRIP_NOPS (converted);
  4963.           receiver = converted;
  4964.           rtype = TREE_TYPE (receiver);
  4965.           if (TREE_CODE (rtype) == POINTER_TYPE
  4966.           && TREE_STATIC_TEMPLATE (TREE_TYPE (rtype)))
  4967.         statically_typed = 1;        
  4968.         }
  4969.       else
  4970. #endif
  4971.         {
  4972.           bzero (errbuf, BUFSIZE);
  4973.           warning ("invalid receiver type `%s'",
  4974.                gen_declaration (rtype, errbuf));
  4975.         }
  4976.     }
  4977.       if (statically_allocated)
  4978.     receiver = build_unary_op (ADDR_EXPR, receiver, 0);
  4979.  
  4980.       /* Don't evaluate the receiver twice. */
  4981.       receiver = save_expr (receiver);
  4982.       self_object = receiver;
  4983.     }
  4984.   else
  4985.     /* If sending to `super', use current self as the object.  */
  4986.     self_object = self_decl;
  4987.  
  4988.   /* Obtain the full selector name.  */
  4989.  
  4990.   if (TREE_CODE (args) == IDENTIFIER_NODE)
  4991.     {
  4992.       /* a unary selector */
  4993.       sel_name = args;
  4994.     }
  4995.   else if (TREE_CODE (args) == TREE_LIST)
  4996.     {
  4997.       sel_name = build_keyword_selector (args);
  4998.     }
  4999.   else
  5000.     {
  5001.       /* internal parser error */
  5002.       fprintf (stderr, "Internal objc parser error, please report to bug-gcc\n");
  5003.       fflush (stderr);
  5004.       abort ();
  5005.     }
  5006.  
  5007.   /* Build the parameter list to give to the method.  */
  5008.  
  5009.   method_params = NULLT;
  5010.   if (TREE_CODE (args) == TREE_LIST)
  5011.     {
  5012.       tree chain = args, prev = NULLT;
  5013.  
  5014.       /* We have a keyword selector--check for comma expressions.  */
  5015.       while (chain)
  5016.     {
  5017.       tree element = TREE_VALUE (chain);
  5018.  
  5019.       /* We have a comma expression, must collapse...  */
  5020.       if (TREE_CODE (element) == TREE_LIST)
  5021.         {
  5022.           if (prev)
  5023.         TREE_CHAIN (prev) = element;
  5024.           else
  5025.         args = element;
  5026.         }
  5027.       prev = chain;
  5028.       chain = TREE_CHAIN (chain);
  5029.         }
  5030.       method_params = args;
  5031.     }
  5032.  
  5033.   /* Determine operation return type.  */
  5034.  
  5035.   if (IS_SUPER (rtype))
  5036.     {
  5037.       tree iface;
  5038.  
  5039.       if (CLASS_SUPER_NAME (implementation_template))
  5040.     {
  5041.       iface = lookup_interface (CLASS_SUPER_NAME (implementation_template));
  5042.  
  5043.       if (TREE_CODE (method_context) == INSTANCE_METHOD_DECL)
  5044.         method_prototype = lookup_instance_method_static (iface, sel_name);
  5045.       else
  5046.         method_prototype = lookup_class_method_static (iface, sel_name);
  5047.  
  5048.       if (iface && !method_prototype)
  5049.         warning ("`%s' does not respond to `%s'",
  5050.              IDENTIFIER_POINTER (CLASS_SUPER_NAME (implementation_template)),
  5051.              IDENTIFIER_POINTER (sel_name));
  5052.     }
  5053.       else
  5054.     {
  5055.       error ("no super class declared in interface for `%s'",
  5056.          IDENTIFIER_POINTER (CLASS_NAME (implementation_template)));
  5057.       return error_mark_node;
  5058.     }
  5059.  
  5060.     }
  5061.   else if (statically_allocated)
  5062.     {
  5063.       tree ctype = TREE_TYPE (rtype);
  5064.       tree iface = lookup_interface (TYPE_NAME (rtype));
  5065.  
  5066.       if (iface)
  5067.     method_prototype = lookup_instance_method_static (iface, sel_name);
  5068.  
  5069.       /* NEW!!! */
  5070.       if (! method_prototype && TYPE_PROTOCOL_LIST (ctype))
  5071.     method_prototype
  5072.       = lookup_method_in_protocol_list (TYPE_PROTOCOL_LIST (ctype),
  5073.                         sel_name, 0);
  5074.  
  5075.       if (!method_prototype)
  5076.     warning ("`%s' does not respond to `%s'",
  5077.          IDENTIFIER_POINTER (TYPE_NAME (rtype)),
  5078.          IDENTIFIER_POINTER (sel_name));
  5079.     }
  5080.   else if (statically_typed)
  5081.     {
  5082.       tree ctype = TREE_TYPE (rtype);
  5083.  
  5084.       /* `self' is now statically_typed...all methods should be visible
  5085.          within the context of the implementation...  */
  5086.       if (implementation_context
  5087.       && CLASS_NAME (implementation_context) == TYPE_NAME (ctype))
  5088.     {
  5089.       method_prototype = lookup_instance_method_static (implementation_template, sel_name);
  5090.  
  5091.       /* NEW!!! */
  5092.       if (! method_prototype && TYPE_PROTOCOL_LIST (ctype))
  5093.         method_prototype
  5094.           = lookup_method_in_protocol_list (TYPE_PROTOCOL_LIST (ctype),
  5095.                         sel_name, 0);
  5096.  
  5097.       if (! method_prototype
  5098.           && implementation_template != implementation_context)
  5099.         /* the method is not published in the interface...check locally */
  5100.         method_prototype
  5101.           = lookup_method (CLASS_NST_METHODS (implementation_context),
  5102.                    sel_name);
  5103.     }
  5104.       else
  5105.     {
  5106.       tree iface;
  5107.  
  5108.       if ((iface = lookup_interface (TYPE_NAME (ctype))))
  5109.         method_prototype = lookup_instance_method_static (iface, sel_name);
  5110.  
  5111.           if (! method_prototype)
  5112.         {
  5113.           tree protocol_list = TYPE_PROTOCOL_LIST (ctype);
  5114.           if (protocol_list)
  5115.         method_prototype
  5116.           = lookup_method_in_protocol_list (protocol_list, sel_name, 0);
  5117.         }
  5118.     }
  5119.  
  5120.       if (!method_prototype)
  5121.         warning ("`%s' does not respond to `%s'",
  5122.          IDENTIFIER_POINTER (TYPE_NAME (ctype)),
  5123.          IDENTIFIER_POINTER (sel_name));
  5124.     }
  5125.   else if (class_ident)
  5126.     {
  5127.       if (implementation_context
  5128.       && CLASS_NAME (implementation_context) == class_ident)
  5129.     {
  5130.       method_prototype
  5131.         = lookup_class_method_static (implementation_template, sel_name);
  5132.  
  5133.       if (!method_prototype
  5134.           && implementation_template != implementation_context)
  5135.         /* the method is not published in the interface...check locally */
  5136.         method_prototype
  5137.           = lookup_method (CLASS_CLS_METHODS (implementation_context),
  5138.                    sel_name);
  5139.     }
  5140.       else
  5141.     {
  5142.       tree iface;
  5143.  
  5144.       if ((iface = lookup_interface (class_ident)))
  5145.         method_prototype = lookup_class_method_static (iface, sel_name);
  5146.     }
  5147.  
  5148.       if (!method_prototype)
  5149.     {
  5150.       warning ("cannot find class (factory) method.");
  5151.       warning ("return type for `%s' defaults to id",
  5152.            IDENTIFIER_POINTER (sel_name));
  5153.     }
  5154.     }
  5155.   else if (IS_PROTOCOL_QUALIFIED_ID (rtype))
  5156.     {
  5157.       /* An anonymous object that has been qualified with a protocol.  */
  5158.  
  5159.       tree protocol_list = TYPE_PROTOCOL_LIST (rtype);
  5160.  
  5161.       method_prototype = lookup_method_in_protocol_list (protocol_list,
  5162.                              sel_name, 0);
  5163.  
  5164.       if (!method_prototype)
  5165.     {
  5166.           hash hsh;
  5167.  
  5168.       warning ("method `%s' not implemented by protocol.",
  5169.            IDENTIFIER_POINTER (sel_name));
  5170.  
  5171.           /* try and find the method signiture in the global pools! */
  5172.  
  5173.           if (!(hsh = hash_lookup (nst_method_hash_list, sel_name)))
  5174.         hsh = hash_lookup (cls_method_hash_list, sel_name);
  5175.  
  5176.           if (!(method_prototype = check_duplicates (hsh)))
  5177.         warning ("return type defaults to id");
  5178.     }
  5179.     }
  5180.   else
  5181.     {
  5182.       hash hsh;
  5183.  
  5184.       /* we think we have an instance...loophole: extern id Object; */
  5185.       hsh = hash_lookup (nst_method_hash_list, sel_name);
  5186.       if (!hsh)
  5187.     /* for various loopholes...like sending messages to self in a
  5188.        factory context... */
  5189.     hsh = hash_lookup (cls_method_hash_list, sel_name);
  5190.  
  5191.       method_prototype = check_duplicates (hsh);
  5192.       if (!method_prototype)
  5193.     {
  5194.       warning ("cannot find method.");
  5195.       warning ("return type for `%s' defaults to id",
  5196.            IDENTIFIER_POINTER (sel_name));
  5197.     }
  5198.     }
  5199.  
  5200.   /* Save the selector name for printing error messages.  */
  5201.   building_objc_message_expr = sel_name;
  5202.  
  5203.   /* Build the parameters list for looking up the method.
  5204.      These are the object itself and the selector.  */
  5205.  
  5206.   if (flag_typed_selectors)
  5207.     selector = build_typed_selector_reference (sel_name, method_prototype);
  5208.   else
  5209.     selector = build_selector_reference (sel_name);
  5210.  
  5211.   retval = build_objc_method_call (super, method_prototype,
  5212.                    receiver, self_object,
  5213.                    selector, method_params);
  5214.  
  5215.   building_objc_message_expr = 0;
  5216.  
  5217.   return retval;
  5218. }
  5219.  
  5220. /* Build a tree expression to send OBJECT the operation SELECTOR,
  5221.    looking up the method on object LOOKUP_OBJECT (often same as OBJECT),
  5222.    assuming the method has prototype METHOD_PROTOTYPE.
  5223.    (That is an INSTANCE_METHOD_DECL or CLASS_METHOD_DECL.)
  5224.    Use METHOD_PARAMS as list of args to pass to the method.
  5225.    If SUPER_FLAG is nonzero, we look up the superclass's method.  */
  5226.  
  5227. static tree
  5228. build_objc_method_call (super_flag, method_prototype, lookup_object, object,
  5229.             selector, method_params)
  5230.      int super_flag;
  5231.      tree method_prototype, lookup_object, object, selector, method_params;
  5232. {
  5233.   tree sender = (super_flag ? umsg_super_decl : umsg_decl);
  5234.   tree rcv_p = (super_flag
  5235.         ? build_pointer_type (xref_tag (RECORD_TYPE,
  5236.                         get_identifier (TAG_SUPER)))
  5237.         : id_type);
  5238.  
  5239.   if (flag_next_runtime)
  5240.     {
  5241.       if (! method_prototype)
  5242.     {
  5243.       method_params = tree_cons (NULLT, lookup_object,
  5244.                      tree_cons (NULLT, selector,
  5245.                         method_params));
  5246.       assemble_external (sender);
  5247.       return build_function_call (sender, method_params);
  5248.     }
  5249.       else
  5250.     {
  5251.       /* This is a real kludge, but it is used only for the Next.
  5252.          Clobber the data type of SENDER temporarily to accept
  5253.          all the arguments for this operation, and to return
  5254.          whatever this operation returns.  */
  5255.       tree arglist = NULLT;
  5256.       tree retval;
  5257.  
  5258.       /* Save the proper contents of SENDER's data type.  */
  5259.       tree savarg = TYPE_ARG_TYPES (TREE_TYPE (sender));
  5260.       tree savret = TREE_TYPE (TREE_TYPE (sender));
  5261.  
  5262.       /* Install this method's argument types.  */
  5263.       arglist = get_arg_type_list (method_prototype, METHOD_REF,
  5264.                        super_flag);
  5265.       TYPE_ARG_TYPES (TREE_TYPE (sender)) = arglist;
  5266.  
  5267.       /* Install this method's return type.  */
  5268.       TREE_TYPE (TREE_TYPE (sender))
  5269.         = groktypename (TREE_TYPE (method_prototype));
  5270.  
  5271.       /* Call SENDER with all the parameters.  This will do type
  5272.          checking using the arg types for this method.  */
  5273.       method_params = tree_cons (NULLT, lookup_object,
  5274.                      tree_cons (NULLT, selector,
  5275.                         method_params));
  5276.       assemble_external (sender);
  5277.       retval = build_function_call (sender, method_params);
  5278.  
  5279.       /* Restore SENDER's return/argument types.  */
  5280.       TYPE_ARG_TYPES (TREE_TYPE (sender)) = savarg;
  5281.       TREE_TYPE (TREE_TYPE (sender)) = savret;
  5282.       return retval;
  5283.     }
  5284.     }
  5285.   else
  5286.     {
  5287.       /* This is the portable way.
  5288.      First call the lookup function to get a pointer to the method,
  5289.      then cast the pointer, then call it with the method arguments.  */
  5290.       tree method;
  5291.  
  5292.       /* Avoid trouble since we may evaluate each of these twice.  */
  5293.       object = save_expr (object);
  5294.       selector = save_expr (selector);
  5295.  
  5296.       lookup_object = build_c_cast (rcv_p, lookup_object); /* cast! */
  5297.  
  5298.       assemble_external (sender);
  5299.       method
  5300.     = build_function_call (sender,
  5301.                    tree_cons (NULLT, lookup_object,
  5302.                       tree_cons (NULLT, selector, NULLT)));
  5303.  
  5304.       /* If we have a method prototype, construct the data type this
  5305.      method needs, and cast what we got from SENDER into a pointer
  5306.      to that type.  */
  5307.       if (method_prototype)
  5308.     {
  5309.       tree arglist = get_arg_type_list (method_prototype, METHOD_REF,
  5310.                         super_flag);
  5311.       tree valtype = groktypename (TREE_TYPE (method_prototype));
  5312.       tree fake_function_type = build_function_type (valtype, arglist);
  5313.       TREE_TYPE (method) = build_pointer_type (fake_function_type);
  5314.     }
  5315.       else
  5316.     TREE_TYPE (method)
  5317.       = build_pointer_type (build_function_type (ptr_type_node, NULLT));
  5318.  
  5319.       /* Pass the object to the method.  */
  5320.       assemble_external (method);
  5321.       return build_function_call (method,
  5322.                   tree_cons (NULLT, object,
  5323.                          tree_cons (NULLT, selector,
  5324.                             method_params)));
  5325.     }
  5326. }
  5327.  
  5328. static void
  5329. build_protocol_reference (p)
  5330.      tree p;
  5331. {
  5332.   tree decl, ident, ptype;
  5333.   struct obstack *save_current_obstack = current_obstack;
  5334.   struct obstack *save_rtl_obstack = rtl_obstack;
  5335.  
  5336.   if (! PROTOCOL_DEFINED (p))
  5337.     {
  5338.       error ("protocol `%s' used but not never defined",
  5339.          IDENTIFIER_POINTER (PROTOCOL_NAME (p)));
  5340.     }
  5341.  
  5342.   rtl_obstack = current_obstack = &permanent_obstack;
  5343.  
  5344.   /* extern struct objc_protocol _OBJC_PROTOCOL_<mumble>; */
  5345.  
  5346.   ident = synth_id_with_class_suffix ("_OBJC_PROTOCOL", p);
  5347.   ptype
  5348.     = groktypename (build_tree_list (build_tree_list (NULLT,
  5349.                               objc_protocol_template),
  5350.                      NULLT));
  5351.  
  5352.   if (IDENTIFIER_GLOBAL_VALUE (ident))
  5353.     decl = IDENTIFIER_GLOBAL_VALUE (ident); /* Set by pushdecl.  */
  5354.   else
  5355.     {
  5356.       decl = build_decl (VAR_DECL, ident, ptype);
  5357.       DECL_EXTERNAL (decl) = 1;
  5358.       TREE_PUBLIC (decl) = 1;
  5359.       TREE_USED (decl) = 1;
  5360.  
  5361.       /* usually called from `rest_of_decl_compilation' */
  5362.       make_decl_rtl (decl, 0, 1);
  5363.       /* our `extended/custom' pushdecl in c-decl.c */
  5364.       pushdecl_top_level (decl);
  5365.    }
  5366.   current_obstack = save_current_obstack;
  5367.   rtl_obstack = save_rtl_obstack;
  5368.  
  5369.   PROTOCOL_FORWARD_DECL (p) = decl;
  5370. }
  5371.  
  5372. tree
  5373. build_protocol_expr (protoname)
  5374.      tree protoname;
  5375. {
  5376.   tree expr;
  5377.   tree p;
  5378.  
  5379.   if (!doing_objc_thang)
  5380.     objc_fatal ();
  5381.  
  5382.   p = lookup_protocol (protoname);
  5383.  
  5384.   if (!p)
  5385.     {
  5386.       error ("Cannot find protocol declaration for `%s'",
  5387.          IDENTIFIER_POINTER (protoname));
  5388.       return error_mark_node;
  5389.     }
  5390.  
  5391.   if (!PROTOCOL_FORWARD_DECL (p))
  5392.     build_protocol_reference (p);
  5393.  
  5394.   expr = build_unary_op (ADDR_EXPR, PROTOCOL_FORWARD_DECL (p), 0);
  5395.  
  5396.   TREE_TYPE (expr) = protocol_type;
  5397.  
  5398.   return expr;
  5399. }
  5400.  
  5401. tree
  5402. build_selector_expr (selnamelist)
  5403.      tree selnamelist;
  5404. {
  5405.   tree selname;
  5406.  
  5407.   if (!doing_objc_thang)
  5408.     objc_fatal ();
  5409.  
  5410.   /* obtain the full selector name */
  5411.   if (TREE_CODE (selnamelist) == IDENTIFIER_NODE)
  5412.     /* a unary selector */
  5413.     selname = selnamelist;
  5414.   else if (TREE_CODE (selnamelist) == TREE_LIST)
  5415.     selname = build_keyword_selector (selnamelist);
  5416.  
  5417.   if (flag_typed_selectors)
  5418.     return build_typed_selector_reference (selname, 0);
  5419.   else
  5420.     return build_selector_reference (selname);
  5421. }
  5422.  
  5423. tree
  5424. build_encode_expr (type)
  5425.      tree type;
  5426. {
  5427.   tree result;
  5428.   char *string;
  5429.  
  5430.   if (!doing_objc_thang)
  5431.     objc_fatal ();
  5432.  
  5433.   encode_type (type, obstack_object_size (&util_obstack),
  5434.            OBJC_ENCODE_INLINE_DEFS);
  5435.   obstack_1grow (&util_obstack, 0);    /* null terminate string */
  5436.   string = obstack_finish (&util_obstack);
  5437.  
  5438.   /* synthesize a string that represents the encoded struct/union */
  5439.   result = my_build_string (strlen (string) + 1, string);
  5440.   obstack_free (&util_obstack, util_firstobj);
  5441.   return result;
  5442. }
  5443.  
  5444. tree
  5445. build_ivar_reference (id)
  5446.      tree id;
  5447. {
  5448.   if (TREE_CODE (method_context) == CLASS_METHOD_DECL)
  5449.     {
  5450.       /* Historically, a class method that produced objects (factory
  5451.      method) would assign `self' to the instance that it
  5452.      allocated.  This would effectively turn the class method into
  5453.      an instance method.  Following this assignment, the instance
  5454.      variables could be accessed.  That practice, while safe,
  5455.      violates the simple rule that a class method should not refer
  5456.      to an instance variable.  It's better to catch the cases
  5457.      where this is done unknowingly than to support the above
  5458.      paradigm.  */
  5459.       warning ("instance variable `%s' accessed in class method",
  5460.            IDENTIFIER_POINTER (id));
  5461.       TREE_TYPE (self_decl) = instance_type; /* cast */
  5462.     }
  5463.  
  5464.   return build_component_ref (build_indirect_ref (self_decl, "->"), id);
  5465. }
  5466.  
  5467. #define HASH_ALLOC_LIST_SIZE    170
  5468. #define ATTR_ALLOC_LIST_SIZE    170
  5469. #define SIZEHASHTABLE         257
  5470.  
  5471. /* make positive */
  5472. #define HASHFUNCTION(key)    ((HOST_WIDE_INT) key & 0x7fffffff)
  5473.  
  5474. static void
  5475. hash_init ()
  5476. {
  5477.   nst_method_hash_list = (hash *)xmalloc (SIZEHASHTABLE * sizeof (hash));
  5478.   cls_method_hash_list = (hash *)xmalloc (SIZEHASHTABLE * sizeof (hash));
  5479.  
  5480.   if (!nst_method_hash_list || !cls_method_hash_list)
  5481.     perror ("unable to allocate space in objc-tree.c");
  5482.   else
  5483.     {
  5484.       int i;
  5485.  
  5486.       for (i = 0; i < SIZEHASHTABLE; i++)
  5487.     {
  5488.       nst_method_hash_list[i] = 0;
  5489.       cls_method_hash_list[i] = 0;
  5490.     }
  5491.     }
  5492. }
  5493.  
  5494. static void
  5495. hash_enter (hashlist, method)
  5496.      hash *hashlist;
  5497.      tree method;
  5498. {
  5499.   static hash     hash_alloc_list = 0;
  5500.   static int    hash_alloc_index = 0;
  5501.   hash obj;
  5502.   int slot = HASHFUNCTION (METHOD_SEL_NAME (method)) % SIZEHASHTABLE;
  5503.  
  5504.   if (! hash_alloc_list || hash_alloc_index >= HASH_ALLOC_LIST_SIZE)
  5505.     {
  5506.       hash_alloc_index = 0;
  5507.       hash_alloc_list = (hash) xmalloc (sizeof (struct hashed_entry)
  5508.                     * HASH_ALLOC_LIST_SIZE);
  5509.       if (! hash_alloc_list)
  5510.     perror ("unable to allocate in objc-tree.c");
  5511.     }
  5512.   obj = &hash_alloc_list[hash_alloc_index++];
  5513.   obj->list = 0;
  5514.   obj->next = hashlist[slot];
  5515.   obj->key = method;
  5516.  
  5517.   hashlist[slot] = obj;        /* append to front */
  5518. }
  5519.  
  5520. static hash
  5521. hash_lookup (hashlist, sel_name)
  5522.      hash *hashlist;
  5523.      tree sel_name;
  5524. {
  5525.   hash target;
  5526.  
  5527.   target = hashlist[HASHFUNCTION (sel_name) % SIZEHASHTABLE];
  5528.  
  5529.   while (target)
  5530.     {
  5531.       if (sel_name == METHOD_SEL_NAME (target->key))
  5532.     return target;
  5533.  
  5534.       target = target->next;
  5535.     }
  5536.   return 0;
  5537. }
  5538.  
  5539. static void
  5540. hash_add_attr (entry, value)
  5541.      hash entry;
  5542.      tree value;
  5543. {
  5544.   static attr     attr_alloc_list = 0;
  5545.   static int    attr_alloc_index = 0;
  5546.   attr obj;
  5547.  
  5548.   if (! attr_alloc_list || attr_alloc_index >= ATTR_ALLOC_LIST_SIZE)
  5549.     {
  5550.       attr_alloc_index = 0;
  5551.       attr_alloc_list = (attr) xmalloc (sizeof (struct hashed_attribute)
  5552.                     * ATTR_ALLOC_LIST_SIZE);
  5553.       if (! attr_alloc_list)
  5554.     perror ("unable to allocate in objc-tree.c");
  5555.     }
  5556.   obj = &attr_alloc_list[attr_alloc_index++];
  5557.   obj->next = entry->list;
  5558.   obj->value = value;
  5559.  
  5560.   entry->list = obj;        /* append to front */
  5561. }
  5562.  
  5563. static tree
  5564. lookup_method (mchain, method)
  5565.      tree mchain;
  5566.      tree method;
  5567. {
  5568.   tree key;
  5569.  
  5570.   if (TREE_CODE (method) == IDENTIFIER_NODE)
  5571.     key = method;
  5572.   else
  5573.     key = METHOD_SEL_NAME (method);
  5574.  
  5575.   while (mchain)
  5576.     {
  5577.       if (METHOD_SEL_NAME (mchain) == key)
  5578.     return mchain;
  5579.       mchain = TREE_CHAIN (mchain);
  5580.     }
  5581.   return NULLT;
  5582. }
  5583.  
  5584. static tree
  5585. lookup_instance_method_static (interface, ident)
  5586.      tree interface;
  5587.      tree ident;
  5588. {
  5589.   tree inter = interface;
  5590.   tree chain = CLASS_NST_METHODS (inter);
  5591.   tree meth = NULLT;
  5592.  
  5593.   do
  5594.     {
  5595.       if ((meth = lookup_method (chain, ident)))
  5596.     return meth;
  5597.  
  5598.       if (CLASS_CATEGORY_LIST (inter))
  5599.     {
  5600.       tree category = CLASS_CATEGORY_LIST (inter);
  5601.       chain = CLASS_NST_METHODS (category);
  5602.  
  5603.       do
  5604.         {
  5605.           if ((meth = lookup_method (chain, ident)))
  5606.         return meth;
  5607.  
  5608.           /* NEW!!! */
  5609.           /* Check for instance methods in protocols in categories.  */
  5610.           if (CLASS_PROTOCOL_LIST (category))
  5611.         {
  5612.           if ((meth = (lookup_method_in_protocol_list
  5613.                    (CLASS_PROTOCOL_LIST (category), ident, 0))))
  5614.             return meth;
  5615.         }
  5616.  
  5617.           if ((category = CLASS_CATEGORY_LIST (category)))
  5618.         chain = CLASS_NST_METHODS (category);
  5619.         }
  5620.       while (category);
  5621.     }
  5622.  
  5623.       if (CLASS_PROTOCOL_LIST (inter))
  5624.     {
  5625.       if ((meth = (lookup_method_in_protocol_list
  5626.                (CLASS_PROTOCOL_LIST (inter), ident, 0))))
  5627.         return meth;
  5628.     }
  5629.  
  5630.       if ((inter = lookup_interface (CLASS_SUPER_NAME (inter))))
  5631.     chain = CLASS_NST_METHODS (inter);
  5632.     }
  5633.   while (inter);
  5634.  
  5635.   return meth;
  5636. }
  5637.  
  5638. static tree
  5639. lookup_class_method_static (interface, ident)
  5640.      tree interface;
  5641.      tree ident;
  5642. {
  5643.   tree inter = interface;
  5644.   tree chain = CLASS_CLS_METHODS (inter);
  5645.   tree meth = NULLT;
  5646.   tree root_inter = NULLT;
  5647.  
  5648.   do
  5649.     {
  5650.       if ((meth = lookup_method (chain, ident)))
  5651.     return meth;
  5652.  
  5653.       if (CLASS_CATEGORY_LIST (inter))
  5654.     {
  5655.       tree category = CLASS_CATEGORY_LIST (inter);
  5656.       chain = CLASS_CLS_METHODS (category);
  5657.  
  5658.       do
  5659.         {
  5660.           if ((meth = lookup_method (chain, ident)))
  5661.         return meth;
  5662.  
  5663.           /* NEW!!! */
  5664.           /* Check for class methods in protocols in categories.  */
  5665.           if (CLASS_PROTOCOL_LIST (category))
  5666.         {
  5667.           if ((meth = (lookup_method_in_protocol_list
  5668.                    (CLASS_PROTOCOL_LIST (category), ident, 1))))
  5669.             return meth;
  5670.         }
  5671.  
  5672.           if ((category = CLASS_CATEGORY_LIST (category)))
  5673.         chain = CLASS_CLS_METHODS (category);
  5674.         }
  5675.       while (category);
  5676.     }
  5677.  
  5678.       /* NEW!!! */
  5679.       /* Check for class methods in protocols.  */
  5680.       if (CLASS_PROTOCOL_LIST (inter))
  5681.     {
  5682.       if ((meth = (lookup_method_in_protocol_list
  5683.                (CLASS_PROTOCOL_LIST (inter), ident, 1))))
  5684.         return meth;
  5685.     }
  5686.  
  5687.       root_inter = inter;
  5688.       if ((inter = lookup_interface (CLASS_SUPER_NAME (inter))))
  5689.     chain = CLASS_CLS_METHODS (inter);
  5690.     }
  5691.   while (inter);
  5692.  
  5693. /* NEW!!! */
  5694.   /* Simulate wrap around.  */
  5695.   return lookup_instance_method_static (root_inter, ident);
  5696. }
  5697.  
  5698. tree
  5699. add_class_method (class, method)
  5700.      tree class;
  5701.      tree method;
  5702. {
  5703.   tree mth;
  5704.   hash hsh;
  5705.  
  5706.   /* We will have allocated the method parameter declarations on the
  5707.      maybepermanent_obstack.  Need to make sure they stick around!  */
  5708.   preserve_data ();
  5709.  
  5710.   if (!(mth = lookup_method (CLASS_CLS_METHODS (class), method)))
  5711.     {
  5712.       /* put method on list in reverse order */
  5713.       TREE_CHAIN (method) = CLASS_CLS_METHODS (class);
  5714.       CLASS_CLS_METHODS (class) = method;
  5715.     }
  5716.   else
  5717.     {
  5718.       if (TREE_CODE (class) == CLASS_IMPLEMENTATION_TYPE)
  5719.     error ("duplicate definition of class method `%s'.",
  5720.            IDENTIFIER_POINTER (METHOD_SEL_NAME (mth)));
  5721.       else
  5722.         {
  5723.       /* check types, if different complain */
  5724.       if (!comp_proto_with_proto (method, mth))
  5725.         error ("duplicate declaration of class method `%s'.",
  5726.            IDENTIFIER_POINTER (METHOD_SEL_NAME (mth)));
  5727.         }
  5728.     }
  5729.  
  5730.   if (!(hsh = hash_lookup (cls_method_hash_list, METHOD_SEL_NAME (method))))
  5731.     {
  5732.       /* install on a global chain */
  5733.       hash_enter (cls_method_hash_list, method);
  5734.     }
  5735.   else
  5736.     {
  5737.       /* check types, if different add to a list */
  5738.       if (!comp_proto_with_proto (method, hsh->key))
  5739.         hash_add_attr (hsh, method);
  5740.     }
  5741.   return method;
  5742. }
  5743.  
  5744. tree
  5745. add_instance_method (class, method)
  5746.      tree class;
  5747.      tree method;
  5748. {
  5749.   tree mth;
  5750.   hash hsh;
  5751.  
  5752.   /* We will have allocated the method parameter declarations on the
  5753.      maybepermanent_obstack.  Need to make sure they stick around!  */
  5754.   preserve_data ();
  5755.  
  5756.   if (!(mth = lookup_method (CLASS_NST_METHODS (class), method)))
  5757.     {
  5758.       /* put method on list in reverse order */
  5759.       TREE_CHAIN (method) = CLASS_NST_METHODS (class);
  5760.       CLASS_NST_METHODS (class) = method;
  5761.     }
  5762.   else
  5763.     {
  5764.       if (TREE_CODE (class) == CLASS_IMPLEMENTATION_TYPE)
  5765.     error ("duplicate definition of instance method `%s'.",
  5766.            IDENTIFIER_POINTER (METHOD_SEL_NAME (mth)));
  5767.       else
  5768.         {
  5769.       /* check types, if different complain */
  5770.       if (!comp_proto_with_proto (method, mth))
  5771.         error ("duplicate declaration of instance method `%s'.",
  5772.            IDENTIFIER_POINTER (METHOD_SEL_NAME (mth)));
  5773.         }
  5774.     }
  5775.  
  5776.   if (!(hsh = hash_lookup (nst_method_hash_list, METHOD_SEL_NAME (method))))
  5777.     {
  5778.       /* install on a global chain */
  5779.       hash_enter (nst_method_hash_list, method);
  5780.     }
  5781.   else
  5782.     {
  5783.       /* check types, if different add to a list */
  5784.       if (!comp_proto_with_proto (method, hsh->key))
  5785.         hash_add_attr (hsh, method);
  5786.     }
  5787.   return method;
  5788. }
  5789.  
  5790. static tree
  5791. add_class (class)
  5792.      tree class;
  5793. {
  5794.   /* put interfaces on list in reverse order */
  5795.   TREE_CHAIN (class) = interface_chain;
  5796.   interface_chain = class;
  5797.   return interface_chain;
  5798. }
  5799.  
  5800. static void
  5801. add_category (class, category)
  5802.       tree class;
  5803.       tree category;
  5804. {
  5805.   /* put categories on list in reverse order */
  5806.  
  5807.   tree cat = CLASS_CATEGORY_LIST (class);
  5808.   while (cat)
  5809.     {
  5810.       if (CLASS_SUPER_NAME (cat) == CLASS_SUPER_NAME (category))
  5811.     {
  5812.       warning ("duplicate interface declaration for category `%s(%s)'",
  5813.            IDENTIFIER_POINTER (CLASS_NAME (class)),
  5814.            IDENTIFIER_POINTER (CLASS_SUPER_NAME (category)));
  5815.       if (CLASS_CLS_METHODS (cat))
  5816.         warning_with_decl (CLASS_CLS_METHODS (cat), "previous declaration", 0);
  5817.       else if (CLASS_NST_METHODS (cat))
  5818.         warning_with_decl (CLASS_NST_METHODS (cat), "previous declaration", 0);
  5819.     }
  5820.       cat = CLASS_CATEGORY_LIST (cat);
  5821.     }
  5822.  
  5823.   CLASS_CATEGORY_LIST (category) = CLASS_CATEGORY_LIST (class);
  5824.   CLASS_CATEGORY_LIST (class) = category;
  5825. }
  5826.  
  5827. /* Called after parsing each instance variable declaration. Necessary to
  5828.    preserve typedefs and implement public/private...
  5829.  
  5830.    PUBLIC is 1 for public, 0 for protected, and 2 for private.  */
  5831.  
  5832. tree
  5833. add_instance_variable (class, public, declarator, declspecs, width)
  5834.      tree class;
  5835.      int public;
  5836.      tree declarator;
  5837.      tree declspecs;
  5838.      tree width;
  5839. {
  5840.   tree field_decl, raw_decl;
  5841.   raw_decl = build_tree_list (declspecs    /*purpose*/, declarator/*value*/);
  5842.  
  5843.   if (CLASS_RAW_IVARS (class))
  5844.     chainon (CLASS_RAW_IVARS (class), raw_decl);
  5845.   else
  5846.     CLASS_RAW_IVARS (class) = raw_decl;
  5847.  
  5848.   field_decl = grokfield (input_filename, lineno,
  5849.               declarator, declspecs, width);
  5850.  
  5851.   /* overload the public attribute, it is not used for FIELD_DECL's */
  5852.   switch (public)
  5853.     {
  5854.     case 0:
  5855.       TREE_PUBLIC (field_decl) = 0;
  5856.       TREE_PRIVATE (field_decl) = 0;
  5857.       TREE_PROTECTED (field_decl) = 1;
  5858.       break;
  5859.  
  5860.     case 1:
  5861.       TREE_PUBLIC (field_decl) = 1;
  5862.       TREE_PRIVATE (field_decl) = 0;
  5863.       TREE_PROTECTED (field_decl) = 0;
  5864.       break;
  5865.  
  5866.     case 2:
  5867.       TREE_PUBLIC (field_decl) = 0;
  5868.       TREE_PRIVATE (field_decl) = 1;
  5869.       TREE_PROTECTED (field_decl) = 0;
  5870.       break;
  5871.  
  5872.     }
  5873.  
  5874.   if (CLASS_IVARS (class))
  5875.     chainon (CLASS_IVARS (class), field_decl);
  5876.   else
  5877.     CLASS_IVARS (class) = field_decl;
  5878.  
  5879.   return class;
  5880. }
  5881.  
  5882. tree
  5883. is_ivar (decl_chain, ident)
  5884.      tree decl_chain;
  5885.      tree ident;
  5886. {
  5887.   for ( ; decl_chain; decl_chain = TREE_CHAIN (decl_chain))
  5888.     if (DECL_NAME (decl_chain) == ident)
  5889.       return decl_chain;
  5890.   return NULL_TREE;
  5891. }
  5892.  
  5893. /* True if the ivar is private and we are not in its implementation.  */
  5894.  
  5895. int
  5896. is_private (decl)
  5897.      tree decl;
  5898. {
  5899.   if (TREE_PRIVATE (decl)
  5900.       && ! is_ivar (CLASS_IVARS (implementation_template), DECL_NAME (decl)))
  5901.     {
  5902.       error ("instance variable `%s' is declared private",
  5903.          IDENTIFIER_POINTER (DECL_NAME (decl)));
  5904.       return 1;
  5905.     }
  5906.   else
  5907.     return 0;
  5908. }
  5909.  
  5910. /* we have an instance variable reference, check to see if it is public...*/
  5911.  
  5912. int
  5913. is_public (expr, identifier)
  5914.      tree expr;
  5915.      tree identifier;
  5916. {
  5917.   tree basetype = TREE_TYPE (expr);
  5918.   enum tree_code code = TREE_CODE (basetype);
  5919.   tree decl;
  5920.  
  5921.   if (code == RECORD_TYPE)
  5922.     {
  5923.       if (TREE_STATIC_TEMPLATE (basetype))
  5924.     {
  5925.       if (!lookup_interface (TYPE_NAME (basetype)))
  5926.         {
  5927.           error ("Cannot find interface declaration for `%s'",
  5928.              IDENTIFIER_POINTER (TYPE_NAME (basetype)));
  5929.           return 0;
  5930.         }
  5931.  
  5932.       if ((decl = is_ivar (TYPE_FIELDS (basetype), identifier)))
  5933.         {
  5934.           if (TREE_PUBLIC (decl))
  5935.         return 1;
  5936.  
  5937.           /* important difference between the Stepstone translator:
  5938.          all instance variables should be public within the context
  5939.          of the implementation.  */
  5940.           if (implementation_context
  5941.           && (((TREE_CODE (implementation_context)
  5942.             == CLASS_IMPLEMENTATION_TYPE)
  5943.                || (TREE_CODE (implementation_context)
  5944.                == CATEGORY_IMPLEMENTATION_TYPE))
  5945.               && (CLASS_NAME (implementation_context)
  5946.               == TYPE_NAME (basetype))))
  5947.         return ! is_private (decl);
  5948.  
  5949.           error ("instance variable `%s' is declared %s",
  5950.              IDENTIFIER_POINTER (identifier),
  5951.              TREE_PRIVATE (decl) ? "private" : "protected");
  5952.           return 0;
  5953.         }
  5954.     }
  5955.       else if (implementation_context && (basetype == objc_object_reference))
  5956.     {
  5957.       TREE_TYPE (expr) = uprivate_record;
  5958.       warning ("static access to object of type `id'");
  5959.     }
  5960.     }
  5961.   return 1;
  5962. }
  5963.  
  5964. /* implement @defs (<classname>) within struct bodies. */
  5965.  
  5966. tree
  5967. get_class_ivars (interface)
  5968.      tree interface;
  5969. {
  5970.   if (!doing_objc_thang)
  5971.     objc_fatal ();
  5972.  
  5973.   /* Make sure we copy the leaf ivars in case @defs is used in a local
  5974.      context.  Otherwise finish_struct will overwrite the layout info
  5975.      using temporary storage.  */
  5976. #ifdef OBJCPLUS
  5977.   return build_tree_list ((tree)visibility_default, 
  5978.               build_ivar_chain (interface, 1));
  5979. #else
  5980.   return build_ivar_chain (interface, 1);
  5981. #endif
  5982. }
  5983.  
  5984. /* make sure all entries in "chain" are also in "list" */
  5985.  
  5986. static int
  5987. check_methods (chain, list, mtype)
  5988.      tree chain;
  5989.      tree list;
  5990.      int mtype;
  5991. {
  5992.   int first = 1;
  5993.  
  5994.   while (chain)
  5995.     {
  5996.       if (!lookup_method (list, chain))
  5997.     {
  5998.       if (first)
  5999.         {
  6000.           if (TREE_CODE (implementation_context) == CLASS_IMPLEMENTATION_TYPE)
  6001.         warning ("incomplete implementation of class `%s'",
  6002.              IDENTIFIER_POINTER (CLASS_NAME (implementation_context)));
  6003.           else if (TREE_CODE (implementation_context) == CATEGORY_IMPLEMENTATION_TYPE)
  6004.         warning ("incomplete implementation of category `%s'",
  6005.              IDENTIFIER_POINTER (CLASS_SUPER_NAME (implementation_context)));
  6006.           first = 0;
  6007.         }
  6008.       warning ("method definition for `%c%s' not found",
  6009.            mtype, IDENTIFIER_POINTER (METHOD_SEL_NAME (chain)));
  6010.     }
  6011.       chain = TREE_CHAIN (chain);
  6012.     }
  6013.     return first;
  6014. }
  6015.  
  6016. static int
  6017. conforms_to_protocol (class, protocol)
  6018. tree class;
  6019. tree protocol;
  6020. {
  6021.    while (protocol)
  6022.      {
  6023.        tree p = CLASS_PROTOCOL_LIST (class);
  6024.        while (p && TREE_VALUE (p) != TREE_VALUE (protocol))
  6025.      p = TREE_CHAIN (p);
  6026.        if (!p)
  6027.      {
  6028.        tree super = (CLASS_SUPER_NAME (class)
  6029.              ? lookup_interface (CLASS_SUPER_NAME (class))
  6030.              : NULL_TREE);
  6031.        int tmp = super ? conforms_to_protocol (super, protocol) : 0;
  6032.        if (!tmp)
  6033.          return 0;
  6034.      }
  6035.        protocol = TREE_CHAIN (protocol);
  6036.      }
  6037.    return 1;
  6038. }
  6039.  
  6040. /* Make sure all methods in CHAIN are accessible as MTYPE methods in 
  6041.    CONTEXT.  This is one of two mechanisms to check protocol integrity
  6042. */
  6043.  
  6044. static int
  6045. check_methods_accessible (chain, context, mtype)
  6046.      tree chain;
  6047.      tree context; /* implementation_context */
  6048.      int mtype;
  6049. {
  6050.   int first = 1;
  6051.   tree list;
  6052.   tree base_context = context;
  6053.  
  6054.   while (chain)
  6055.     {
  6056.       context = base_context;
  6057.       while (context)
  6058.     {
  6059.       if (mtype == '+')
  6060.         list = CLASS_CLS_METHODS (context);
  6061.       else
  6062.         list = CLASS_NST_METHODS (context);
  6063.  
  6064.       if (lookup_method (list, chain))
  6065.           break; 
  6066.  
  6067.       else if (TREE_CODE (context) == CLASS_IMPLEMENTATION_TYPE
  6068.            || TREE_CODE (context) == CLASS_INTERFACE_TYPE)
  6069.         context = (CLASS_SUPER_NAME (context) 
  6070.                ? lookup_interface (CLASS_SUPER_NAME (context))
  6071.                : NULL_TREE);
  6072.  
  6073.       else if (TREE_CODE (context) == CATEGORY_IMPLEMENTATION_TYPE
  6074.            || TREE_CODE (context) == CATEGORY_INTERFACE_TYPE)
  6075.         context = (CLASS_NAME (context) 
  6076.                ? lookup_interface (CLASS_NAME (context))
  6077.                : NULL_TREE);
  6078.       else
  6079.         abort ();
  6080.     }
  6081.  
  6082.       if (context == NULL_TREE)
  6083.     {
  6084.       if (first)
  6085.         {
  6086.           if (TREE_CODE (implementation_context)
  6087.           == CLASS_IMPLEMENTATION_TYPE)
  6088.         warning ("incomplete implementation of class `%s'",
  6089.              IDENTIFIER_POINTER
  6090.                (CLASS_NAME (implementation_context)));
  6091.           else if (TREE_CODE (implementation_context)
  6092.                == CATEGORY_IMPLEMENTATION_TYPE)
  6093.         warning ("incomplete implementation of category `%s'",
  6094.              IDENTIFIER_POINTER
  6095.                (CLASS_SUPER_NAME (implementation_context)));
  6096.           first = 0;
  6097.         }
  6098.       warning ("method definition for `%c%s' not found",
  6099.            mtype, IDENTIFIER_POINTER (METHOD_SEL_NAME (chain)));
  6100.     }
  6101.  
  6102.       chain = TREE_CHAIN (chain); /* next method... */
  6103.     }
  6104.     return first;
  6105. }
  6106.  
  6107. static void
  6108. check_protocols (proto_list, type, name)
  6109.      tree proto_list;
  6110.      char *type;
  6111.      char *name;
  6112. {
  6113.   for ( ; proto_list; proto_list = TREE_CHAIN (proto_list))
  6114.     {
  6115.       tree p = TREE_VALUE (proto_list);
  6116.  
  6117.       if (TREE_CODE (p) == PROTOCOL_INTERFACE_TYPE)
  6118.     {
  6119.       int f1, f2;
  6120.       
  6121.       /* Ensure that all protocols have bodies! */
  6122.       if (flag_warn_protocol) {
  6123.         f1 = check_methods (PROTOCOL_CLS_METHODS (p),
  6124.                 CLASS_CLS_METHODS (implementation_context),
  6125.                 '+');
  6126.         f2 = check_methods (PROTOCOL_NST_METHODS (p),
  6127.                 CLASS_NST_METHODS (implementation_context),
  6128.                 '-');
  6129.       } else {
  6130.         f1 = check_methods_accessible (PROTOCOL_CLS_METHODS (p),
  6131.                        implementation_context,
  6132.                        '+');
  6133.         f2 = check_methods_accessible (PROTOCOL_NST_METHODS (p),
  6134.                        implementation_context,
  6135.                        '-');
  6136.       }
  6137.  
  6138.       if (!f1 || !f2)
  6139.         warning ("%s `%s' does not fully implement the `%s' protocol",
  6140.              type, name, IDENTIFIER_POINTER (PROTOCOL_NAME (p)));
  6141.  
  6142.     }
  6143.       else
  6144.     ; /* an identifier...if we could not find a protocol.  */
  6145.  
  6146.       /* Check protocols recursively. */
  6147.       if (PROTOCOL_LIST (p))
  6148.     {
  6149.       tree super_class
  6150.         = lookup_interface (CLASS_SUPER_NAME (implementation_template));
  6151.       if (super_class &&
  6152.           ! conforms_to_protocol (super_class, PROTOCOL_LIST (p)))
  6153.         check_protocols (PROTOCOL_LIST (p), type, name);
  6154.     }
  6155.     }
  6156. }
  6157.  
  6158. /* Make sure that the class CLASS_NAME is defined
  6159.    CODE says which kind of thing CLASS_NAME ought to be.
  6160.    It can be CLASS_INTERFACE_TYPE, CLASS_IMPLEMENTATION_TYPE,
  6161.    CATEGORY_INTERFACE_TYPE, or CATEGORY_IMPLEMENTATION_TYPE.
  6162.  
  6163.    If CODE is CLASS_INTERFACE_TYPE, we also do a push_obstacks_nochange
  6164.    whose matching pop is in continue_class.  */
  6165.  
  6166. tree
  6167. start_class (code, class_name, super_name, protocol_list)
  6168.      enum tree_code code;
  6169.      tree class_name;
  6170.      tree super_name;
  6171.      tree protocol_list;
  6172. {
  6173.   tree class, decl;
  6174.  
  6175.   if ((code == CLASS_IMPLEMENTATION_TYPE)
  6176.       && objc_implementation_context)
  6177.     {
  6178.       warning ("`@end' missing in implementation context");
  6179.       finish_class (objc_implementation_context);
  6180.       objc_ivar_chain = NULL_TREE;
  6181.       objc_implementation_context = NULL_TREE;
  6182.     }
  6183.  
  6184.   if (code == CLASS_INTERFACE_TYPE)
  6185.     {
  6186.       push_obstacks_nochange ();
  6187.       end_temporary_allocation ();
  6188.     }
  6189.  
  6190.   if (!doing_objc_thang)
  6191.     objc_fatal ();
  6192.  
  6193. #ifdef OBJCPLUS
  6194.   {
  6195.     struct obstack *ambient_obstack = current_obstack;
  6196.     current_obstack = &permanent_obstack;
  6197. #endif
  6198.  
  6199.     class = make_node (code);
  6200.     TYPE_BINFO (class) = make_tree_vec (5);
  6201.  
  6202. #ifdef OBJCPLUS    
  6203.     current_obstack = ambient_obstack;
  6204.   }
  6205. #endif
  6206.  
  6207.   CLASS_NAME (class) = class_name;
  6208.   CLASS_SUPER_NAME (class) = super_name;
  6209.   CLASS_CLS_METHODS (class) = NULL_TREE;
  6210.  
  6211.   if (! is_class_name (class_name) && (decl = lookup_name (class_name)))
  6212.     {
  6213.       error ("`%s' redeclared as different kind of symbol",
  6214.          IDENTIFIER_POINTER (class_name));
  6215.       error_with_decl (decl, "previous declaration of `%s'");
  6216.     }
  6217.  
  6218.   if (code == CLASS_IMPLEMENTATION_TYPE)
  6219.     {
  6220.       {
  6221.         static tree implemented_classes = 0;
  6222.         tree chain = implemented_classes;
  6223.         for (chain = implemented_classes; chain; chain = TREE_CHAIN (chain))
  6224.            if (TREE_VALUE (chain) == class_name)
  6225.          {
  6226.            error ("reimplementation of class `%s'",
  6227.               IDENTIFIER_POINTER (class_name));
  6228.            return error_mark_node;
  6229.          }
  6230.         implemented_classes = perm_tree_cons (NULLT, class_name,
  6231.                           implemented_classes);
  6232.       }
  6233.  
  6234.       /* pre-build the following entities - for speed/convenience. */
  6235.       if (!self_id)
  6236.         self_id = get_identifier ("self");
  6237.       if (!ucmd_id)
  6238.         ucmd_id = get_identifier ("_cmd");
  6239.  
  6240.       if (!objc_super_template)
  6241.     objc_super_template = build_super_template ();
  6242.  
  6243.       method_slot = 0;        /* reset for multiple classes per file */
  6244.  
  6245.       implementation_context = class;
  6246.  
  6247.       /* lookup the interface for this implementation. */
  6248.  
  6249.       if (!(implementation_template = lookup_interface (class_name)))
  6250.         {
  6251.       warning ("Cannot find interface declaration for `%s'",
  6252.            IDENTIFIER_POINTER (class_name));
  6253.       add_class (implementation_template = implementation_context);
  6254.         }
  6255.  
  6256.       /* if a super class has been specified in the implementation,
  6257.      insure it conforms to the one specified in the interface */
  6258.  
  6259.       if (super_name
  6260.       && (super_name != CLASS_SUPER_NAME (implementation_template)))
  6261.         {
  6262.       tree previous_name = CLASS_SUPER_NAME (implementation_template);
  6263.           char *name = previous_name ? IDENTIFIER_POINTER (previous_name) : "";
  6264.       error ("conflicting super class name `%s'",
  6265.          IDENTIFIER_POINTER (super_name));
  6266.       error ("previous declaration of `%s'", name);
  6267.         }
  6268.       else if (! super_name)
  6269.     {
  6270.       CLASS_SUPER_NAME (implementation_context) 
  6271.         = CLASS_SUPER_NAME (implementation_template);
  6272.     }
  6273.     }
  6274.   else if (code == CLASS_INTERFACE_TYPE)
  6275.     {
  6276.       if (lookup_interface (class_name))
  6277.         warning ("duplicate interface declaration for class `%s'",
  6278.                  IDENTIFIER_POINTER (class_name));
  6279.       else
  6280.         add_class (class);
  6281.  
  6282.       if (protocol_list)
  6283.     CLASS_PROTOCOL_LIST (class)
  6284.       = lookup_and_install_protocols (protocol_list);
  6285.     }
  6286.   else if (code == CATEGORY_INTERFACE_TYPE)
  6287.     {
  6288.       tree class_category_is_assoc_with;
  6289.  
  6290.       /* for a category, class_name is really the name of the class that
  6291.      the following set of methods will be associated with...we must
  6292.      find the interface so that can derive the objects template */
  6293.  
  6294.       if (!(class_category_is_assoc_with = lookup_interface (class_name)))
  6295.     {
  6296.       error ("Cannot find interface declaration for `%s'",
  6297.          IDENTIFIER_POINTER (class_name));
  6298.       exit (1);
  6299.     }
  6300.       else
  6301.         add_category (class_category_is_assoc_with, class);
  6302.  
  6303.       if (protocol_list)
  6304.     CLASS_PROTOCOL_LIST (class)
  6305.       = lookup_and_install_protocols (protocol_list);
  6306.     }
  6307.   else if (code == CATEGORY_IMPLEMENTATION_TYPE)
  6308.     {
  6309.       /* pre-build the following entities - for speed/convenience. */
  6310.       if (!self_id)
  6311.         self_id = get_identifier ("self");
  6312.       if (!ucmd_id)
  6313.         ucmd_id = get_identifier ("_cmd");
  6314.  
  6315.       if (!objc_super_template)
  6316.     objc_super_template = build_super_template ();
  6317.  
  6318.       method_slot = 0;        /* reset for multiple classes per file */
  6319.  
  6320.       implementation_context = class;
  6321.  
  6322.       /* for a category, class_name is really the name of the class that
  6323.      the following set of methods will be associated with...we must
  6324.      find the interface so that can derive the objects template */
  6325.  
  6326.       if (!(implementation_template = lookup_interface (class_name)))
  6327.         {
  6328.       error ("Cannot find interface declaration for `%s'",
  6329.          IDENTIFIER_POINTER (class_name));
  6330.       exit (1);
  6331.         }
  6332.     }
  6333.   return class;
  6334. }
  6335.  
  6336. tree
  6337. continue_class (class)
  6338.      tree class;
  6339. {
  6340.   if (TREE_CODE (class) == CLASS_IMPLEMENTATION_TYPE
  6341.       || TREE_CODE (class) == CATEGORY_IMPLEMENTATION_TYPE)
  6342.     {
  6343.       struct imp_entry *imp_entry;
  6344.       tree ivar_context;
  6345.  
  6346.       /* check consistency of the instance variables. */
  6347.  
  6348.       if (CLASS_IVARS (class))
  6349.     check_ivars (implementation_template, class);
  6350.  
  6351.       /* code generation */
  6352.  
  6353. #ifdef OBJCPLUS
  6354.       push_lang_context (lang_name_c);
  6355. #endif
  6356.  
  6357.       ivar_context = build_private_template (implementation_template);
  6358.  
  6359.       if (!objc_class_template)
  6360.     build_class_template ();
  6361.  
  6362.       if (!(imp_entry = (struct imp_entry *) xmalloc (sizeof (struct imp_entry))))
  6363.     perror ("unable to allocate in objc-tree.c");
  6364.  
  6365.       imp_entry->next = imp_list;
  6366.       imp_entry->imp_context = class;
  6367.       imp_entry->imp_template = implementation_template;
  6368.  
  6369.       synth_forward_declarations ();
  6370.       imp_entry->class_decl = UOBJC_CLASS_decl;
  6371.       imp_entry->meta_decl = UOBJC_METACLASS_decl;
  6372.  
  6373.       /* append to front and increment count */
  6374.       imp_list = imp_entry;
  6375.       if (TREE_CODE (class) == CLASS_IMPLEMENTATION_TYPE)
  6376.     imp_count++;
  6377.       else
  6378.     cat_count++;
  6379.  
  6380. #ifdef OBJCPLUS
  6381.       pop_lang_context ();
  6382. #endif /* OBJCPLUS */
  6383.  
  6384.       return ivar_context;
  6385.     }
  6386.   else if (TREE_CODE (class) == CLASS_INTERFACE_TYPE)
  6387.     {
  6388.       tree record;
  6389.  
  6390. #ifdef OBJCPLUS
  6391.       push_lang_context (lang_name_c);
  6392. #endif
  6393.  
  6394.       record = xref_tag (RECORD_TYPE, CLASS_NAME (class));
  6395.  
  6396.       if (!TYPE_FIELDS (record))
  6397.     {
  6398. #ifdef OBJCPLUS
  6399.       build_private_template(class);
  6400. #else
  6401.       finish_struct (record, build_ivar_chain (class, 0));
  6402.       CLASS_STATIC_TEMPLATE (class) = record;
  6403. #endif
  6404.  
  6405.       /* mark this record as a class template - for static typing */
  6406.       TREE_STATIC_TEMPLATE (record) = 1;
  6407.     }
  6408.  
  6409. #ifdef OBJCPLUS
  6410.       pop_lang_context ();
  6411. #endif /* OBJCPLUS */
  6412.  
  6413.       return NULLT;
  6414.     }
  6415.   else
  6416.     return error_mark_node;
  6417. }
  6418.  
  6419. /* This is called once we see the "@end" in an interface/implementation.  */
  6420.  
  6421. void
  6422. finish_class (class)
  6423.      tree class;
  6424. {
  6425.   if (TREE_CODE (class) == CLASS_IMPLEMENTATION_TYPE)
  6426.     {
  6427.       /* all code generation is done in finish_objc */
  6428.  
  6429.       if (implementation_template != implementation_context)
  6430.     {
  6431.       /* ensure that all method listed in the interface contain bodies! */
  6432.       check_methods (CLASS_CLS_METHODS (implementation_template),
  6433.              CLASS_CLS_METHODS (implementation_context), '+');
  6434.       check_methods (CLASS_NST_METHODS (implementation_template),
  6435.              CLASS_NST_METHODS (implementation_context), '-');
  6436.  
  6437.       if (CLASS_PROTOCOL_LIST (implementation_template))
  6438.         check_protocols (CLASS_PROTOCOL_LIST (implementation_template),
  6439.                  "class",
  6440.                  IDENTIFIER_POINTER (CLASS_NAME (implementation_context)));
  6441.     }
  6442.     }
  6443.   else if (TREE_CODE (class) == CATEGORY_IMPLEMENTATION_TYPE)
  6444.     {
  6445.       tree category = CLASS_CATEGORY_LIST (implementation_template);
  6446.  
  6447.       /* find the category interface from the class it is associated with */
  6448.       while (category)
  6449.     {
  6450.       if (CLASS_SUPER_NAME (class) == CLASS_SUPER_NAME (category))
  6451.         break;
  6452.       category = CLASS_CATEGORY_LIST (category);
  6453.     }
  6454.  
  6455.       if (category)
  6456.     {
  6457.       /* ensure that all method listed in the interface contain bodies! */
  6458.       check_methods (CLASS_CLS_METHODS (category),
  6459.              CLASS_CLS_METHODS (implementation_context), '+');
  6460.       check_methods (CLASS_NST_METHODS (category),
  6461.              CLASS_NST_METHODS (implementation_context), '-');
  6462.  
  6463.       if (CLASS_PROTOCOL_LIST (category))
  6464.         check_protocols (CLASS_PROTOCOL_LIST (category),
  6465.                  "category",
  6466.                  IDENTIFIER_POINTER (CLASS_SUPER_NAME (implementation_context)));
  6467.     }
  6468.     }
  6469.   else if (TREE_CODE (class) == CLASS_INTERFACE_TYPE)
  6470.     {
  6471.       tree decl_specs;
  6472.       char *class_name = IDENTIFIER_POINTER (CLASS_NAME (class));
  6473.       char *string = (char *) alloca (strlen (class_name) + 3);
  6474.  
  6475.       /* extern struct objc_object *_<my_name>; */
  6476.  
  6477.       sprintf (string, "_%s", class_name);
  6478.  
  6479.       decl_specs = build_tree_list (NULLT, ridpointers[(int) RID_EXTERN]);
  6480.       decl_specs = tree_cons (NULLT, objc_object_reference, decl_specs);
  6481.       define_decl (build1 (INDIRECT_REF, NULLT, get_identifier (string)),
  6482.            decl_specs);
  6483.     }
  6484. }
  6485.  
  6486. static tree
  6487. add_protocol (protocol)
  6488.      tree protocol;
  6489. {
  6490.   /* put protocol on list in reverse order */
  6491.   TREE_CHAIN (protocol) = protocol_chain;
  6492.   protocol_chain = protocol;
  6493.   return protocol_chain;
  6494. }
  6495.  
  6496. static tree
  6497. lookup_protocol (ident)
  6498.      tree ident;
  6499. {
  6500.   tree chain;
  6501.  
  6502.   for (chain = protocol_chain; chain; chain = TREE_CHAIN (chain))
  6503.     {
  6504.       if (ident == PROTOCOL_NAME (chain))
  6505.     return chain;
  6506.     }
  6507.   return NULLT;
  6508. }
  6509.  
  6510. /*
  6511.  *  This function forward declares the protocols named by NAMES.  If
  6512.  *  they are already declared or defined, the function has no effect.
  6513.  */
  6514. void
  6515. objc_declare_protocols (names)
  6516.      tree names;
  6517. {
  6518.   tree list;
  6519.  
  6520.   if (!doing_objc_thang)
  6521.     objc_fatal ();
  6522.  
  6523.   for (list = names; list; list = TREE_CHAIN (list))
  6524.     {
  6525.       tree name = TREE_VALUE (list);
  6526.       if (lookup_protocol (name) == NULL_TREE)
  6527.     {
  6528.       tree protocol = make_node (PROTOCOL_INTERFACE_TYPE);
  6529.       TYPE_BINFO (protocol) = make_tree_vec (2);
  6530.       PROTOCOL_NAME (protocol) = name;
  6531.       PROTOCOL_LIST (protocol) = NULL_TREE;
  6532.       add_protocol (protocol);
  6533.       PROTOCOL_DEFINED (protocol) = 0;
  6534.       PROTOCOL_FORWARD_DECL (protocol) = NULL_TREE;
  6535.     }
  6536.     }
  6537. }
  6538.  
  6539. tree
  6540. start_protocol (code, name, list)
  6541.      enum tree_code code;
  6542.      tree name;
  6543.      tree list;
  6544. {
  6545.   tree protocol;
  6546.  
  6547.   if (!doing_objc_thang)
  6548.     objc_fatal ();
  6549.  
  6550.   /* This is as good a place as any.  Need to invoke push_tag_toplevel.  */
  6551.   if (!objc_protocol_template)
  6552.     objc_protocol_template = build_protocol_template ();
  6553.  
  6554.   protocol = lookup_protocol (name);
  6555.  
  6556.   if (!protocol)
  6557.     {
  6558.       protocol = make_node (code);
  6559.       TYPE_BINFO (protocol) = make_tree_vec (2);
  6560.  
  6561.       PROTOCOL_NAME (protocol) = name;
  6562.       PROTOCOL_LIST (protocol) = list;
  6563.  
  6564.       lookup_and_install_protocols (list);
  6565.       add_protocol (protocol);
  6566.       PROTOCOL_DEFINED (protocol) = 1;
  6567.       PROTOCOL_FORWARD_DECL (protocol) = NULL_TREE;
  6568.  
  6569.       check_protocol_recursively (protocol, list);
  6570.     }
  6571.   else if (! PROTOCOL_DEFINED (protocol))
  6572.     {
  6573.       PROTOCOL_DEFINED (protocol) = 1;
  6574.       PROTOCOL_LIST (protocol) = list;
  6575.       lookup_and_install_protocols (list);
  6576.  
  6577.       check_protocol_recursively (protocol, list);
  6578.     }
  6579.   else
  6580.     {
  6581.       warning ("duplicate declaration for protocol `%s'",
  6582.            IDENTIFIER_POINTER (name));
  6583.     }
  6584.  
  6585.   return protocol;
  6586. }
  6587.  
  6588. void
  6589. finish_protocol (protocol)
  6590.     tree protocol;
  6591. {
  6592. }
  6593.  
  6594.  
  6595. /* "Encode" a data type into a string, which grows in util_obstack.
  6596.    ??? What is the FORMAT?  Someone please document this!  */
  6597.  
  6598. static void
  6599. encode_type_qualifiers (declspecs)
  6600.      tree declspecs;
  6601. {
  6602.   tree spec;
  6603.  
  6604.   for (spec = declspecs; spec; spec = TREE_CHAIN (spec))
  6605.     {
  6606.       if (ridpointers[(int) RID_CONST] == TREE_VALUE (spec))
  6607.     obstack_1grow (&util_obstack, 'r');
  6608.       else if (ridpointers[(int) RID_IN] == TREE_VALUE (spec))
  6609.     obstack_1grow (&util_obstack, 'n');
  6610.       else if (ridpointers[(int) RID_INOUT] == TREE_VALUE (spec))
  6611.     obstack_1grow (&util_obstack, 'N');
  6612.       else if (ridpointers[(int) RID_OUT] == TREE_VALUE (spec))
  6613.     obstack_1grow (&util_obstack, 'o');
  6614.       else if (ridpointers[(int) RID_BYCOPY] == TREE_VALUE (spec))
  6615.     obstack_1grow (&util_obstack, 'O');
  6616.       else if (ridpointers[(int) RID_ONEWAY] == TREE_VALUE (spec))
  6617.     obstack_1grow (&util_obstack, 'V');
  6618.     }
  6619. }
  6620.  
  6621. /* Encode a pointer type.  */
  6622.  
  6623. static void
  6624. encode_pointer (type, curtype, format)
  6625.      tree type;
  6626.      int curtype;
  6627.      int format;
  6628. {
  6629.   tree pointer_to = TREE_TYPE (type);
  6630.  
  6631.   if (TREE_CODE (pointer_to) == RECORD_TYPE)
  6632.     {
  6633.       if (TYPE_NAME (pointer_to)
  6634.       && TREE_CODE (TYPE_NAME (pointer_to)) == IDENTIFIER_NODE)
  6635.     {
  6636.       char *name = IDENTIFIER_POINTER (TYPE_NAME (pointer_to));
  6637.  
  6638.       if (strcmp (name, TAG_OBJECT) == 0) /* '@' */
  6639.         {
  6640.           obstack_1grow (&util_obstack, '@');
  6641.           return;
  6642.         }
  6643.       else if (TREE_STATIC_TEMPLATE (pointer_to))
  6644.         {
  6645.               if (generating_instance_variables)
  6646.             {
  6647.               obstack_1grow (&util_obstack, '@');
  6648.               obstack_1grow (&util_obstack, '"');
  6649.               obstack_grow (&util_obstack, name, strlen (name));
  6650.               obstack_1grow (&util_obstack, '"');
  6651.               return;
  6652.         }
  6653.               else
  6654.             {
  6655.               obstack_1grow (&util_obstack, '@');
  6656.               return;
  6657.         }
  6658.         }
  6659.       else if (strcmp (name, TAG_CLASS) == 0) /* '#' */
  6660.         {
  6661.           obstack_1grow (&util_obstack, '#');
  6662.           return;
  6663.         }
  6664. #ifndef OBJC_INT_SELECTORS
  6665.       else if (strcmp (name, TAG_SELECTOR) == 0) /* ':' */
  6666.         {
  6667.           obstack_1grow (&util_obstack, ':');
  6668.           return;
  6669.         }
  6670. #endif /* OBJC_INT_SELECTORS */
  6671.     }
  6672.     }
  6673.   else if (TREE_CODE (pointer_to) == INTEGER_TYPE
  6674.        && TYPE_MODE (pointer_to) == QImode)
  6675.     {
  6676.       obstack_1grow (&util_obstack, '*');
  6677.       return;
  6678.     }
  6679.  
  6680.   /* we have a type that does not get special treatment... */
  6681.  
  6682.   /* NeXT extension */
  6683.   obstack_1grow (&util_obstack, '^');
  6684.   encode_type (pointer_to, curtype, format);
  6685. }
  6686.  
  6687. static void
  6688. encode_array (type, curtype, format)
  6689.      tree type;
  6690.      int curtype;
  6691.      int format;
  6692. {
  6693.   tree an_int_cst = TYPE_SIZE (type);
  6694.   tree array_of = TREE_TYPE (type);
  6695.   char buffer[40];
  6696.  
  6697.   /* An incomplete array is treated like a pointer.  */
  6698.   if (an_int_cst == NULL)
  6699.     {
  6700.       /* split for obvious reasons.  North-Keys 30 Mar 1991 */
  6701.       encode_pointer (type, curtype, format);
  6702.       return;
  6703.     }
  6704.  
  6705.   sprintf (buffer, "[%d",
  6706.        (TREE_INT_CST_LOW (an_int_cst)
  6707.         / TREE_INT_CST_LOW (TYPE_SIZE (array_of))));
  6708.   obstack_grow (&util_obstack, buffer, strlen (buffer));
  6709.   encode_type (array_of, curtype, format);
  6710.   obstack_1grow (&util_obstack, ']');
  6711.   return;
  6712. }
  6713.  
  6714. static void
  6715. encode_aggregate (type, curtype, format)
  6716.      tree type;
  6717.      int curtype;
  6718.      int format;
  6719. {
  6720.   enum tree_code code = TREE_CODE (type);
  6721.  
  6722.   switch (code)
  6723.     {
  6724.     case RECORD_TYPE:
  6725.       {
  6726.     if (obstack_object_size (&util_obstack) > 0
  6727.         && *(obstack_next_free (&util_obstack) - 1) == '^')
  6728.       {
  6729.         tree name = TYPE_NAME (type);
  6730.  
  6731.         /* we have a reference - this is a NeXT extension */
  6732.  
  6733.         if (obstack_object_size (&util_obstack) - curtype == 1
  6734.         && format == OBJC_ENCODE_INLINE_DEFS)
  6735.           {
  6736.         /* output format of struct for first level only! */
  6737.  
  6738.         tree fields = TYPE_FIELDS (type);
  6739.  
  6740.         if (name && TREE_CODE (name) == IDENTIFIER_NODE)
  6741.           {
  6742.             obstack_1grow (&util_obstack, '{');
  6743.             obstack_grow (&util_obstack,
  6744.                   IDENTIFIER_POINTER (name),
  6745.                   strlen (IDENTIFIER_POINTER (name)));
  6746.             obstack_1grow (&util_obstack, '=');
  6747.           }
  6748.         else
  6749.           obstack_grow (&util_obstack, "{?=", 3);
  6750.  
  6751.         for ( ; fields; fields = TREE_CHAIN (fields))
  6752.           encode_field_decl (fields, curtype, format);
  6753.         obstack_1grow (&util_obstack, '}');
  6754.           }
  6755.             else if (name && TREE_CODE (name) == IDENTIFIER_NODE)
  6756.           {
  6757.         obstack_1grow (&util_obstack, '{');
  6758.         obstack_grow (&util_obstack,
  6759.                   IDENTIFIER_POINTER (name),
  6760.                   strlen (IDENTIFIER_POINTER (name)));
  6761.         obstack_1grow (&util_obstack, '}');
  6762.           }
  6763.         else /* we have an untagged structure or a typedef */
  6764.           obstack_grow (&util_obstack, "{?}", 3);
  6765.       }
  6766.     else
  6767.       {
  6768.         tree name = TYPE_NAME (type);
  6769.         tree fields = TYPE_FIELDS (type);
  6770.  
  6771.         if (format == OBJC_ENCODE_INLINE_DEFS
  6772.         || generating_instance_variables)
  6773.           {
  6774.         obstack_1grow (&util_obstack, '{');
  6775.         if (name && TREE_CODE (name) == IDENTIFIER_NODE)
  6776.           obstack_grow (&util_obstack,
  6777.                 IDENTIFIER_POINTER (name),
  6778.                 strlen (IDENTIFIER_POINTER (name)));
  6779.         else
  6780.           obstack_1grow (&util_obstack, '?');
  6781.  
  6782.         obstack_1grow (&util_obstack, '=');
  6783.  
  6784.         for (; fields; fields = TREE_CHAIN (fields))
  6785.           {
  6786.                   if (generating_instance_variables)
  6787.                     {
  6788.                       tree fname = DECL_NAME (fields);
  6789.  
  6790.               obstack_1grow (&util_obstack, '"');
  6791.               if (fname && TREE_CODE (fname) == IDENTIFIER_NODE)
  6792.                 {
  6793.                 obstack_grow (&util_obstack,
  6794.                       IDENTIFIER_POINTER (fname),
  6795.                       strlen (IDENTIFIER_POINTER (fname)));
  6796.             }
  6797.               obstack_1grow (&util_obstack, '"');
  6798.                     }
  6799.           encode_field_decl (fields, curtype, format);
  6800.           }
  6801.         obstack_1grow (&util_obstack, '}');
  6802.           }
  6803.         else
  6804.           {
  6805.         obstack_1grow (&util_obstack, '{');
  6806.         if (name && TREE_CODE (name) == IDENTIFIER_NODE)
  6807.           obstack_grow (&util_obstack,
  6808.                 IDENTIFIER_POINTER (name),
  6809.                 strlen (IDENTIFIER_POINTER (name)));
  6810.         else    /* we have an untagged structure or a typedef */
  6811.           obstack_1grow (&util_obstack, '?');
  6812.         obstack_1grow (&util_obstack, '}');
  6813.           }
  6814.       }
  6815.     break;
  6816.       }
  6817.     case UNION_TYPE:
  6818.       {
  6819.     if (*obstack_next_free (&util_obstack) == '^'
  6820.         || format != OBJC_ENCODE_INLINE_DEFS)
  6821.       {
  6822.         /* we have a reference - this is a NeXT extension--
  6823.            or we don't want the details.  */
  6824.             if (TYPE_NAME (type)
  6825.         && TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
  6826.           {
  6827.         obstack_1grow (&util_obstack, '(');
  6828.         obstack_grow (&util_obstack,
  6829.                   IDENTIFIER_POINTER (TYPE_NAME (type)),
  6830.                   strlen (IDENTIFIER_POINTER (TYPE_NAME (type))));
  6831.         obstack_1grow (&util_obstack, ')');
  6832.           }
  6833.         else /* we have an untagged structure or a typedef */
  6834.           obstack_grow (&util_obstack, "(?)", 3);
  6835.       }
  6836.     else
  6837.       {
  6838.         tree fields = TYPE_FIELDS (type);
  6839.         obstack_1grow (&util_obstack, '(');
  6840.         for ( ; fields; fields = TREE_CHAIN (fields))
  6841.           encode_field_decl (fields, curtype, format);
  6842.         obstack_1grow (&util_obstack, ')');
  6843.       }
  6844.     break;
  6845.       }
  6846.  
  6847.     case ENUMERAL_TYPE:
  6848.       obstack_1grow (&util_obstack, 'i');
  6849.       break;
  6850.     }
  6851. }
  6852.  
  6853. /* Support bitfields, the current version of Objective-C does not support
  6854.    them. the string will consist of one or more "b:n"'s where n is an
  6855.    integer describing the width of the bitfield. Currently, classes in
  6856.    the kit implement a method "-(char *)describeBitfieldStruct:" that
  6857.    simulates this...if they do not implement this method, the archiver
  6858.    assumes the bitfield is 16 bits wide (padded if necessary) and packed
  6859.    according to the GNU compiler. After looking at the "kit", it appears
  6860.    that all classes currently rely on this default behavior, rather than
  6861.    hand generating this string (which is tedious).  */
  6862.  
  6863. static void
  6864. encode_bitfield (width, format)
  6865.      int width;
  6866.      int format;
  6867. {
  6868.   char buffer[40];
  6869.   sprintf (buffer, "b%d", width);
  6870.   obstack_grow (&util_obstack, buffer, strlen (buffer));
  6871. }
  6872.  
  6873. /* FORMAT will be OBJC_ENCODE_INLINE_DEFS or OBJC_ENCODE_DONT_INLINE_DEFS.  */
  6874.  
  6875. static void
  6876. encode_type (type, curtype, format)
  6877.      tree type;
  6878.      int curtype;
  6879.      int format;
  6880. {
  6881.   enum tree_code code = TREE_CODE (type);
  6882.  
  6883.   if (code == INTEGER_TYPE)
  6884.     {
  6885.       if (TREE_INT_CST_LOW (TYPE_MIN_VALUE (type)) == 0
  6886.       && TREE_INT_CST_HIGH (TYPE_MIN_VALUE (type)) == 0)
  6887.     {
  6888.       /* unsigned integer types */
  6889.  
  6890.       if (TYPE_MODE (type) == QImode) /* 'C' */
  6891.         obstack_1grow (&util_obstack, 'C');
  6892.       else if (TYPE_MODE (type) == HImode) /* 'S' */
  6893.         obstack_1grow (&util_obstack, 'S');
  6894.       else if (TYPE_MODE (type) == SImode)
  6895.         {
  6896.           if (type == long_unsigned_type_node)
  6897.         obstack_1grow (&util_obstack, 'L'); /* 'L' */
  6898.           else
  6899.         obstack_1grow (&util_obstack, 'I'); /* 'I' */
  6900.         }
  6901.       else if (TYPE_MODE (type) == DImode) /* 'Q' */
  6902.         obstack_1grow (&util_obstack, 'Q');
  6903.     }
  6904.       else            /* signed integer types */
  6905.     {
  6906.       if (TYPE_MODE (type) == QImode) /* 'c' */
  6907.         obstack_1grow (&util_obstack, 'c');
  6908.       else if (TYPE_MODE (type) == HImode) /* 's' */
  6909.         obstack_1grow (&util_obstack, 's');
  6910.       else if (TYPE_MODE (type) == SImode) /* 'i' */
  6911.         {
  6912.           if (type == long_integer_type_node)
  6913.         obstack_1grow (&util_obstack, 'l'); /* 'l' */
  6914.           else
  6915.         obstack_1grow (&util_obstack, 'i'); /* 'i' */
  6916.         }
  6917.       else if (TYPE_MODE (type) == DImode) /* 'q' */
  6918.         obstack_1grow (&util_obstack, 'q');
  6919.     }
  6920.     }
  6921.   else if (code == REAL_TYPE)
  6922.     {
  6923.       /* floating point types */
  6924.  
  6925.       if (TYPE_MODE (type) == SFmode) /* 'f' */
  6926.     obstack_1grow (&util_obstack, 'f');
  6927.       else if (TYPE_MODE (type) == DFmode
  6928.            || TYPE_MODE (type) == TFmode) /* 'd' */
  6929.     obstack_1grow (&util_obstack, 'd');
  6930.     }
  6931.  
  6932.   else if (code == VOID_TYPE)    /* 'v' */
  6933.     obstack_1grow (&util_obstack, 'v');
  6934.  
  6935.   else if (code == ARRAY_TYPE)
  6936.     encode_array (type, curtype, format);
  6937.  
  6938.   else if (code == POINTER_TYPE)
  6939.     encode_pointer (type, curtype, format);
  6940.  
  6941.   else if (code == RECORD_TYPE || code == UNION_TYPE || code == ENUMERAL_TYPE)
  6942.     encode_aggregate (type, curtype, format);
  6943.  
  6944.   else if (code == FUNCTION_TYPE) /* '?' */
  6945.     obstack_1grow (&util_obstack, '?');
  6946. }
  6947.  
  6948. static void
  6949. encode_field_decl (field_decl, curtype, format)
  6950.      tree field_decl;
  6951.      int curtype;
  6952.      int format;
  6953. {
  6954.   tree type;
  6955.  
  6956.  /* If this field is obviously a bitfield, or is a bitfield that has been
  6957.      clobbered to look like a ordinary integer mode, go ahead and generate
  6958.      the bitfield typing information. */
  6959.   type = TREE_TYPE (field_decl);
  6960.   if (DECL_BIT_FIELD (field_decl))
  6961.     encode_bitfield (DECL_FIELD_SIZE (field_decl), format);
  6962.   else if (TREE_CODE (TYPE_SIZE (type)) == INTEGER_CST
  6963.        && DECL_FIELD_SIZE (field_decl)
  6964.        && TYPE_MODE (type) > DECL_MODE (field_decl))
  6965.     encode_bitfield (DECL_FIELD_SIZE (field_decl), format);
  6966.   else
  6967.     encode_type (TREE_TYPE (field_decl), curtype, format);
  6968. }
  6969.  
  6970. static tree
  6971. expr_last (complex_expr)
  6972.      tree complex_expr;
  6973. {
  6974.   tree next;
  6975.  
  6976.   if (complex_expr)
  6977.     while ((next = TREE_OPERAND (complex_expr, 0)))
  6978.       complex_expr = next;
  6979.   return complex_expr;
  6980. }
  6981.  
  6982.  
  6983. /* Transform a method definition into a function definition as follows:
  6984.    - synthesize the first two arguments, "self" and "_cmd".  */
  6985.  
  6986. void
  6987. start_method_def (method)
  6988.      tree method;
  6989. {
  6990.   tree decl_specs;
  6991.  
  6992.   /* Required to implement _msgSuper.  */
  6993.   method_context = method;
  6994.   UOBJC_SUPER_decl = NULLT;
  6995.  
  6996.   pushlevel (0);         /* Must be called BEFORE start_function.  */
  6997.  
  6998.   /* Generate prototype declarations for arguments..."new-style".  */
  6999.  
  7000.   if (TREE_CODE (method_context) == INSTANCE_METHOD_DECL)
  7001.     decl_specs = build_tree_list (NULLT, uprivate_record);
  7002.   else
  7003.     /* really a `struct objc_class *'...however we allow people to
  7004.        assign to self...which changes its type midstream.  */
  7005.     decl_specs = build_tree_list (NULLT, objc_object_reference);
  7006.  
  7007.   push_parm_decl (build_tree_list (decl_specs,
  7008.                    build1 (INDIRECT_REF, NULLT, self_id)));
  7009.  
  7010. #ifdef OBJC_INT_SELECTORS
  7011.   decl_specs = build_tree_list (NULLT, ridpointers[(int) RID_UNSIGNED]);
  7012.   decl_specs = tree_cons (NULLT, ridpointers[(int) RID_INT], decl_specs);
  7013.   push_parm_decl (build_tree_list (decl_specs, ucmd_id));
  7014. #else /* not OBJC_INT_SELECTORS */
  7015.   decl_specs = build_tree_list (NULLT,
  7016.                 xref_tag (RECORD_TYPE,
  7017.                       get_identifier (TAG_SELECTOR)));
  7018.   push_parm_decl (build_tree_list (decl_specs,
  7019.                    build1 (INDIRECT_REF, NULLT, ucmd_id)));
  7020. #endif /* not OBJC_INT_SELECTORS */
  7021.  
  7022.   /* generate argument declarations if a keyword_decl */
  7023.   if (METHOD_SEL_ARGS (method))
  7024.     {
  7025.       tree arglist = METHOD_SEL_ARGS (method);
  7026.       do
  7027.     {
  7028.       tree arg_spec = TREE_PURPOSE (TREE_TYPE (arglist));
  7029.       tree arg_decl = TREE_VALUE (TREE_TYPE (arglist));
  7030.  
  7031.       if (arg_decl)
  7032.         {
  7033.           tree last_expr = expr_last (arg_decl);
  7034.  
  7035.           /* unite the abstract decl with its name */
  7036.           TREE_OPERAND (last_expr, 0) = KEYWORD_ARG_NAME (arglist);
  7037.           push_parm_decl (build_tree_list (arg_spec, arg_decl));
  7038. #ifndef OBJCPLUS
  7039.           /* unhook...restore the abstract declarator */
  7040.           TREE_OPERAND (last_expr, 0) = NULLT;
  7041. #endif
  7042.         }
  7043.       else
  7044.         push_parm_decl (build_tree_list (arg_spec,
  7045.                          KEYWORD_ARG_NAME (arglist)));
  7046.  
  7047.       arglist = TREE_CHAIN (arglist);
  7048.     }
  7049.       while (arglist);
  7050.     }
  7051.  
  7052.   if (METHOD_ADD_ARGS (method) > (tree)1)
  7053.     {
  7054.       /* we have a variable length selector - in "prototype" format */
  7055.       tree akey = TREE_PURPOSE (METHOD_ADD_ARGS (method));
  7056.       while (akey)
  7057.     {
  7058.       /* This must be done prior to calling pushdecl.  pushdecl is
  7059.          going to change our chain on us.  */
  7060.       tree nextkey = TREE_CHAIN (akey);
  7061.       pushdecl (akey);
  7062.       akey = nextkey;
  7063.     }
  7064.     }
  7065. }
  7066.  
  7067. static void
  7068. warn_with_method (message, mtype, method)
  7069.      char *message;
  7070.      char mtype;
  7071.      tree method;
  7072. {
  7073.   tree func = current_function_decl;
  7074.   char method_name[BUFSIZE];
  7075.   char *md;
  7076.  
  7077.   current_function_decl = method;
  7078.  
  7079.   if (count_error (1) == 0)
  7080.     return;
  7081.  
  7082.   method_name[0] = 0;
  7083.   sprintf (errbuf, "%s `%c%s'\0",
  7084.        message, mtype, gen_method_decl (method, method_name));
  7085.  
  7086.   warning_with_file_and_line (DECL_SOURCE_FILE (method),
  7087.                   DECL_SOURCE_LINE (method),
  7088.                   errbuf);
  7089.  
  7090.   current_function_decl = func;
  7091. }
  7092.  
  7093. /* return 1 if `method' is consistent with `proto' */
  7094.  
  7095. static int
  7096. comp_method_with_proto (method, proto)
  7097.      tree method, proto;
  7098. {
  7099.   static tree function_type = 0;
  7100.  
  7101.   /* create a function_type node once */
  7102.   if (!function_type)
  7103.     {
  7104.       struct obstack *ambient_obstack = current_obstack;
  7105.  
  7106.       current_obstack = &permanent_obstack;
  7107.       function_type = make_node (FUNCTION_TYPE);
  7108.       current_obstack = ambient_obstack;
  7109.     }
  7110.  
  7111.   /* Install argument types - normally set by build_function_type.  */
  7112.   TYPE_ARG_TYPES (function_type) = get_arg_type_list (proto, METHOD_DEF, 0);
  7113.  
  7114.   /* install return type */
  7115.   TREE_TYPE (function_type) = groktypename (TREE_TYPE (proto));
  7116.  
  7117.   return comptypes (TREE_TYPE (METHOD_DEFINITION (method)), function_type);
  7118. }
  7119.  
  7120. /* return 1 if `proto1' is consistent with `proto2' */
  7121.  
  7122. static int
  7123. comp_proto_with_proto (proto1, proto2)
  7124.      tree proto1, proto2;
  7125. {
  7126.   static tree function_type1 = 0, function_type2 = 0;
  7127.  
  7128.   /* create a couple function_type node's once */
  7129.   if (!function_type1)
  7130.     {
  7131.       struct obstack *ambient_obstack = current_obstack;
  7132.  
  7133.       current_obstack = &permanent_obstack;
  7134.       function_type1 = make_node (FUNCTION_TYPE);
  7135.       function_type2 = make_node (FUNCTION_TYPE);
  7136.       current_obstack = ambient_obstack;
  7137.     }
  7138.  
  7139.   /* Install argument types - normally set by build_function_type.  */
  7140.   TYPE_ARG_TYPES (function_type1) = get_arg_type_list (proto1, METHOD_REF, 0);
  7141.   TYPE_ARG_TYPES (function_type2) = get_arg_type_list (proto2, METHOD_REF, 0);
  7142.  
  7143.   /* install return type */
  7144.   TREE_TYPE (function_type1) = groktypename (TREE_TYPE (proto1));
  7145.   TREE_TYPE (function_type2) = groktypename (TREE_TYPE (proto2));
  7146.  
  7147.   return comptypes (function_type1, function_type2);
  7148. }
  7149.  
  7150. /* - generate an identifier for the function. the format is "_n_cls",
  7151.      where 1 <= n <= nMethods, and cls is the name the implementation we
  7152.      are processing.
  7153.    - install the return type from the method declaration.
  7154.    - if we have a prototype, check for type consistency.  */
  7155.  
  7156. static void
  7157. really_start_method (method, parmlist)
  7158.      tree method, parmlist;
  7159. {
  7160.   tree sc_spec, ret_spec, ret_decl, decl_specs;
  7161.   tree method_decl, method_id;
  7162.   char *buf, *sel_name, *class_name, *cat_name;
  7163.  
  7164.   /* synth the storage class & assemble the return type */
  7165.   sc_spec = tree_cons (NULLT, ridpointers[(int) RID_STATIC], NULLT);
  7166.   ret_spec = TREE_PURPOSE (TREE_TYPE (method));
  7167.   decl_specs = chainon (sc_spec, ret_spec);
  7168.  
  7169.   sel_name = IDENTIFIER_POINTER (METHOD_SEL_NAME (method));
  7170.   class_name = IDENTIFIER_POINTER (CLASS_NAME (implementation_context));
  7171.   cat_name = ((TREE_CODE (implementation_context)
  7172.            == CLASS_IMPLEMENTATION_TYPE)
  7173.           ? NULL
  7174.           : IDENTIFIER_POINTER (CLASS_SUPER_NAME (implementation_context)));
  7175.   method_slot++;
  7176.   /* Make sure this is big enough for any plausible method label.  */
  7177.   buf = (char *) alloca (50 + strlen (sel_name) + strlen (class_name)
  7178.              + (cat_name ? strlen (cat_name) : 0));
  7179.  
  7180.   OBJC_GEN_METHOD_LABEL (buf, TREE_CODE (method) == INSTANCE_METHOD_DECL,
  7181.              class_name, cat_name, sel_name, method_slot);
  7182.  
  7183.   method_id = get_identifier (buf);
  7184.  
  7185. #ifdef OBJCPLUS
  7186.   /* Objective-C methods cannot be overloaded, so we don't need
  7187.      the type encoding appended.  It looks bad anyway... */
  7188.   push_lang_context (lang_name_c);
  7189. #endif
  7190.  
  7191.   method_decl = build_nt (CALL_EXPR, method_id, parmlist, NULLT);
  7192.  
  7193.   /* check the declarator portion of the return type for the method */
  7194.   if ((ret_decl = TREE_VALUE (TREE_TYPE (method))))
  7195.     {
  7196.       /* unite the complex decl (specified in the abstract decl) with the
  7197.      function decl just synthesized..(int *), (int (*)()), (int (*)[]).  */
  7198.       tree save_expr = expr_last (ret_decl);
  7199.  
  7200.       TREE_OPERAND (save_expr, 0) = method_decl;
  7201.       method_decl = ret_decl;
  7202.       /* fool the parser into thinking it is starting a function */
  7203.       start_function (decl_specs, method_decl, 0);
  7204. #ifdef OBJCPLUS
  7205.       /* must be called AFTER "start_function()" */
  7206.       if (! current_function_parms_stored)
  7207.     store_parm_decls ();     
  7208. #endif
  7209.       /* unhook...this has the effect of restoring the abstract declarator */
  7210.       TREE_OPERAND (save_expr, 0) = NULLT;
  7211.     }
  7212.   else
  7213.     {
  7214.       TREE_VALUE (TREE_TYPE (method)) = method_decl;
  7215.       /* fool the parser into thinking it is starting a function */
  7216.       start_function (decl_specs, method_decl, 0);
  7217. #ifdef OBJCPLUS
  7218.       /* must be called AFTER "start_function()" */
  7219.       if (! current_function_parms_stored)
  7220.     store_parm_decls ();     
  7221. #endif
  7222.       /* unhook...this has the effect of restoring the abstract declarator */
  7223.       TREE_VALUE (TREE_TYPE (method)) = NULLT;
  7224.     }
  7225.  
  7226. #ifdef OBJCPLUS
  7227.   /* set self_decl from the first argument...this global is used by 
  7228.    * build_ivar_reference().build_indirect_ref().
  7229.    */
  7230.   self_decl = DECL_ARGUMENTS(current_function_decl);
  7231. #endif /* OBJCPLUS */
  7232.  
  7233. #ifdef OBJCPLUS
  7234.   pop_lang_context ();
  7235. #endif
  7236.  
  7237.   METHOD_DEFINITION (method) = current_function_decl;
  7238.  
  7239.   /* Check consistency...start_function, pushdecl, duplicate_decls.  */
  7240.  
  7241.   if (implementation_template != implementation_context)
  7242.     {
  7243.       tree proto;
  7244.  
  7245.       if (TREE_CODE (method) == INSTANCE_METHOD_DECL)
  7246.     proto = lookup_instance_method_static (implementation_template,
  7247.                            METHOD_SEL_NAME (method));
  7248.       else
  7249.     proto = lookup_class_method_static (implementation_template,
  7250.                         METHOD_SEL_NAME (method));
  7251.  
  7252.       if (proto && ! comp_method_with_proto (method, proto))
  7253.     {
  7254.       char type = (TREE_CODE (method) == INSTANCE_METHOD_DECL ? '-' : '+');
  7255.  
  7256.       warn_with_method ("conflicting types for", type, method);
  7257.       warn_with_method ("previous declaration of", type, proto);
  7258.     }
  7259.     }
  7260. }
  7261.  
  7262. /* The following routine is always called...this "architecture" is to
  7263.    accommodate "old-style" variable length selectors.
  7264.  
  7265.    - a:a b:b // prototype  ; id c; id d; // old-style.  */
  7266.  
  7267. void
  7268. continue_method_def ()
  7269. {
  7270.   tree parmlist;
  7271.  
  7272.   if (METHOD_ADD_ARGS (method_context) == (tree)1)
  7273.     /* We have a `, ...' immediately following the selector.  */
  7274.     parmlist = get_parm_info (0);
  7275.   else
  7276.     parmlist = get_parm_info (1); /* place a `void_at_end' */
  7277.  
  7278. #ifndef OBJCPLUS
  7279.   /* Set self_decl from the first argument...this global is used by
  7280.      build_ivar_reference calling build_indirect_ref.  */
  7281.   self_decl = TREE_PURPOSE (parmlist);
  7282. #endif /* !OBJCPLUS */
  7283.  
  7284.   poplevel (0, 0, 0);        /* must be called BEFORE start_function.  */
  7285.  
  7286.   really_start_method (method_context, parmlist);
  7287.  
  7288. #ifndef OBJCPLUS
  7289.   store_parm_decls ();        /* must be called AFTER start_function.  */
  7290. #endif
  7291. }
  7292.  
  7293. /* Called by the parser, from the `pushlevel' production.  */
  7294.  
  7295. void
  7296. add_objc_decls ()
  7297. {
  7298.   if (!UOBJC_SUPER_decl)
  7299.     {
  7300.       UOBJC_SUPER_decl = start_decl (get_identifier (UTAG_SUPER),
  7301.                      build_tree_list (NULLT,
  7302.                               objc_super_template),
  7303.                      0);
  7304.  
  7305.       finish_decl (UOBJC_SUPER_decl, NULLT, NULLT);
  7306.  
  7307.       /* this prevents `unused variable' warnings when compiling with -Wall.  */
  7308.       DECL_IN_SYSTEM_HEADER (UOBJC_SUPER_decl) = 1;
  7309.     }
  7310. }
  7311.  
  7312. /* _n_Method (id self, SEL sel, ...)
  7313.      {
  7314.        struct objc_super _S;
  7315.        _msgSuper ((_S.self = self, _S.class = _cls, &_S), ...);
  7316.      }  */
  7317.  
  7318. tree
  7319. get_super_receiver ()
  7320. {
  7321.   if (method_context)
  7322.     {
  7323.       tree super_expr, super_expr_list;
  7324.  
  7325.       /* set receiver to self */
  7326.       super_expr = build_component_ref (UOBJC_SUPER_decl, self_id);
  7327.       super_expr = build_modify_expr (super_expr, NOP_EXPR, self_decl);
  7328.       super_expr_list = build_tree_list (NULLT, super_expr);
  7329.  
  7330.       /* set class to begin searching */
  7331.       super_expr = build_component_ref (UOBJC_SUPER_decl,
  7332.                     get_identifier ("class"));
  7333.  
  7334.       if (TREE_CODE (implementation_context) == CLASS_IMPLEMENTATION_TYPE)
  7335.     {
  7336.       /* [_cls, __cls]Super are "pre-built" in
  7337.          synth_forward_declarations.  */
  7338.  
  7339.       super_expr = build_modify_expr (super_expr, NOP_EXPR,
  7340.                       ((TREE_CODE (method_context)
  7341.                         == INSTANCE_METHOD_DECL)
  7342.                        ? ucls_super_ref
  7343.                        : uucls_super_ref));
  7344.     }
  7345.       else            /* we have a category... */
  7346.     {
  7347.       tree super_name = CLASS_SUPER_NAME (implementation_template);
  7348.       tree super_class;
  7349.  
  7350.       if (!super_name)  /* Barf if super used in a category of Object. */
  7351.         {
  7352.           error ("no super class declared in interface for `%s'",
  7353.             IDENTIFIER_POINTER (CLASS_NAME (implementation_template)));
  7354.           return error_mark_node;
  7355.         }
  7356.  
  7357.       if (flag_next_runtime)
  7358.         {
  7359.           super_class = get_class_reference (super_name);
  7360.           if (TREE_CODE (method_context) == CLASS_METHOD_DECL)
  7361.         super_class
  7362.           = build_component_ref (build_indirect_ref (super_class, "->"),
  7363.                      get_identifier ("isa"));
  7364.         }
  7365.       else
  7366.         {
  7367.           add_class_reference (super_name);
  7368.           super_class = (TREE_CODE (method_context) == INSTANCE_METHOD_DECL
  7369.                  ? objc_get_class_decl : objc_get_meta_class_decl);
  7370.           assemble_external (super_class);
  7371.           super_class
  7372.         = build_function_call
  7373.           (super_class,
  7374.            build_tree_list (NULLT,
  7375.                     my_build_string (IDENTIFIER_LENGTH (super_name) + 1,
  7376.                              IDENTIFIER_POINTER (super_name))));
  7377.         }
  7378.  
  7379.       /* cast! */
  7380.       super_class = build_c_cast (TREE_TYPE (ucls_super_ref), super_class);
  7381.       /* TREE_TYPE (super_class) = TREE_TYPE (ucls_super_ref);  */
  7382.       super_expr = build_modify_expr (super_expr, NOP_EXPR, super_class);
  7383.     }
  7384.       chainon (super_expr_list, build_tree_list (NULL_TREE, super_expr));
  7385.  
  7386.       super_expr = build_unary_op (ADDR_EXPR, UOBJC_SUPER_decl, 0);
  7387.       chainon (super_expr_list, build_tree_list (NULL_TREE, super_expr));
  7388.  
  7389.       return build_compound_expr (super_expr_list);
  7390.     }
  7391.   else
  7392.     {
  7393.       error ("[super ...] must appear in a method context");
  7394.       return error_mark_node;
  7395.     }
  7396. }
  7397.  
  7398. static tree
  7399. encode_method_def (func_decl)
  7400.       tree func_decl;
  7401. {
  7402.   tree parms;
  7403.   int stack_size;
  7404.   int max_parm_end = 0;
  7405.   char buffer[40];
  7406.   tree result;
  7407.  
  7408.   /* return type */
  7409.   encode_type (TREE_TYPE (TREE_TYPE (func_decl)),
  7410.            obstack_object_size (&util_obstack),
  7411.            OBJC_ENCODE_INLINE_DEFS);
  7412.   /* stack size */
  7413.   for (parms = DECL_ARGUMENTS (func_decl); parms;
  7414.        parms = TREE_CHAIN (parms))
  7415.     {
  7416.       int parm_end = forwarding_offset (parms);
  7417.  
  7418.       if (parm_end > 0)
  7419.     parm_end += TREE_INT_CST_LOW (TYPE_SIZE (TREE_TYPE (parms))) / BITS_PER_UNIT;
  7420.       else
  7421.     parm_end = -parm_end;
  7422.  
  7423.       if (max_parm_end < parm_end)
  7424.     max_parm_end = parm_end;
  7425.     }
  7426.  
  7427.   stack_size = max_parm_end - ( flag_next_runtime 
  7428.                    ? OBJC_FORWARDING_MIN_OFFSET 
  7429.                    : 0);
  7430.  
  7431.   sprintf (buffer, "%d", stack_size);
  7432.   obstack_grow (&util_obstack, buffer, strlen (buffer));
  7433.  
  7434.   /* argument types */
  7435.   for (parms = DECL_ARGUMENTS (func_decl); parms;
  7436.        parms = TREE_CHAIN (parms))
  7437.     {
  7438.       /* type */
  7439.       encode_type (TREE_TYPE (parms),
  7440.            obstack_object_size (&util_obstack),
  7441.            OBJC_ENCODE_INLINE_DEFS);
  7442.  
  7443.       /* compute offset */
  7444.       sprintf (buffer, "%d", forwarding_offset (parms));
  7445.  
  7446.       /* indicate register */
  7447.       if (offset_is_register)
  7448.     obstack_1grow (&util_obstack, '+');
  7449.  
  7450.       obstack_grow (&util_obstack, buffer, strlen (buffer));
  7451.     }
  7452.  
  7453.   obstack_1grow (&util_obstack, 0);    /* null terminate string */
  7454.   result = get_identifier (obstack_finish (&util_obstack));
  7455.   obstack_free (&util_obstack, util_firstobj);
  7456.   return result;
  7457. }
  7458.  
  7459. void
  7460. finish_method_def ()
  7461. {
  7462.   METHOD_ENCODING (method_context) = encode_method_def (current_function_decl);
  7463.  
  7464.   finish_function (0);
  7465.  
  7466.   /* this must be done AFTER finish_function, since the optimizer may
  7467.      find "may be used before set" errors.  */
  7468.   method_context = NULLT;    /* required to implement _msgSuper.  */
  7469. }
  7470.  
  7471. int
  7472. lang_report_error_function (decl)
  7473.       tree decl;
  7474. {
  7475.   if (method_context)
  7476.     {
  7477.       fprintf (stderr, "In method `%s'\n",
  7478.            IDENTIFIER_POINTER (METHOD_SEL_NAME (method_context)));
  7479.       return 1;
  7480.     }
  7481.   else
  7482.     return 0;
  7483. }
  7484.  
  7485. static int
  7486. is_complex_decl (type)
  7487.      tree type;
  7488. {
  7489.   return (TREE_CODE (type) == ARRAY_TYPE
  7490.       || TREE_CODE (type) == FUNCTION_TYPE
  7491.       || (TREE_CODE (type) == POINTER_TYPE && ! IS_ID (type)));
  7492. }
  7493.  
  7494.  
  7495. /* Code to convert a decl node into text for a declaration in C.  */
  7496.  
  7497. static char tmpbuf[256];
  7498.  
  7499. static void
  7500. adorn_decl (decl, str)
  7501.      tree decl;
  7502.      char *str;
  7503. {
  7504.   enum tree_code code = TREE_CODE (decl);
  7505.  
  7506.   if (code == ARRAY_REF)
  7507.     {
  7508.       tree an_int_cst = TREE_OPERAND (decl, 1);
  7509.  
  7510.       if (an_int_cst && TREE_CODE (an_int_cst) == INTEGER_CST)
  7511.     sprintf (str + strlen (str), "[%d]", TREE_INT_CST_LOW (an_int_cst));
  7512.       else
  7513.     strcat (str, "[]");
  7514.     }
  7515.   else if (code == ARRAY_TYPE)
  7516.     {
  7517.       tree an_int_cst = TYPE_SIZE (decl);
  7518.       tree array_of = TREE_TYPE (decl);
  7519.  
  7520.       if (an_int_cst && TREE_CODE (an_int_cst) == INTEGER_TYPE)
  7521.     sprintf (str + strlen (str), "[%d]",
  7522.          (TREE_INT_CST_LOW (an_int_cst)
  7523.           / TREE_INT_CST_LOW (TYPE_SIZE (array_of))));
  7524.       else
  7525.     strcat (str, "[]");
  7526.     }
  7527.   else if (code == CALL_EXPR)
  7528.     {
  7529.       tree chain = TREE_PURPOSE (TREE_OPERAND (decl, 1));
  7530.  
  7531.       strcat (str, "(");
  7532.       while (chain)
  7533.     {
  7534.       gen_declaration (chain, str);
  7535.       chain = TREE_CHAIN (chain);
  7536.       if (chain)
  7537.         strcat (str, ", ");
  7538.     }
  7539.       strcat (str, ")");
  7540.     }
  7541.   else if (code == FUNCTION_TYPE)
  7542.     {
  7543.       tree chain  = TYPE_ARG_TYPES (decl); /* a list of types */
  7544.  
  7545.       strcat (str, "(");
  7546.       while (chain && TREE_VALUE (chain) != void_type_node)
  7547.     {
  7548.       gen_declaration (TREE_VALUE (chain), str);
  7549.       chain = TREE_CHAIN (chain);
  7550.       if (chain && TREE_VALUE (chain) != void_type_node)
  7551.         strcat (str, ", ");
  7552.     }
  7553.       strcat (str, ")");
  7554.     }
  7555.   else if (code == INDIRECT_REF)
  7556.     {
  7557.       strcpy (tmpbuf, "*");
  7558.       if (TREE_TYPE (decl) && TREE_CODE (TREE_TYPE (decl)) == TREE_LIST)
  7559.     {
  7560.       tree chain;
  7561.  
  7562.       for (chain = nreverse (copy_list (TREE_TYPE (decl)));
  7563.            chain;
  7564.            chain = TREE_CHAIN (chain))
  7565.         {
  7566.           if (TREE_CODE (TREE_VALUE (chain)) == IDENTIFIER_NODE)
  7567.         {
  7568.           strcat (tmpbuf, " ");
  7569.           strcat (tmpbuf, IDENTIFIER_POINTER (TREE_VALUE (chain)));
  7570.         }
  7571.         }
  7572.       if (str[0])
  7573.         strcat (tmpbuf, " ");
  7574.     }
  7575.       strcat (tmpbuf, str);
  7576.       strcpy (str, tmpbuf);
  7577.     }
  7578.   else if (code == POINTER_TYPE)
  7579.     {
  7580.       strcpy (tmpbuf, "*");
  7581.       if (TREE_READONLY (decl) || TYPE_VOLATILE (decl))
  7582.     {
  7583.       if (TREE_READONLY (decl))
  7584.         strcat (tmpbuf, " const");
  7585.       if (TYPE_VOLATILE (decl))
  7586.         strcat (tmpbuf, " volatile");
  7587.       if (str[0])
  7588.         strcat (tmpbuf, " ");
  7589.     }
  7590.       strcat (tmpbuf, str);
  7591.       strcpy (str, tmpbuf);
  7592.     }
  7593. }
  7594.  
  7595. static char *
  7596. gen_declarator (decl, buf, name)
  7597.      tree decl;
  7598.      char *buf;
  7599.      char *name;
  7600. {
  7601.   if (decl)
  7602.     {
  7603.       enum tree_code code = TREE_CODE (decl);
  7604.       char *str;
  7605.       tree op;
  7606.       int wrap = 0;
  7607.  
  7608.       switch (code)
  7609.     {
  7610.     case ARRAY_REF:
  7611.     case INDIRECT_REF:
  7612.     case CALL_EXPR:
  7613.       op = TREE_OPERAND (decl, 0);
  7614.  
  7615.       /* we have a pointer to a function or array...(*)(), (*)[] */
  7616.       if ((code == ARRAY_REF || code == CALL_EXPR)
  7617.           && op && TREE_CODE (op) == INDIRECT_REF)
  7618.         wrap = 1;
  7619.  
  7620.       str = gen_declarator (op, buf, name);
  7621.  
  7622.       if (wrap)
  7623.         {
  7624.           strcpy (tmpbuf, "(");
  7625.           strcat (tmpbuf, str);
  7626.           strcat (tmpbuf, ")");
  7627.           strcpy (str, tmpbuf);
  7628.         }
  7629.  
  7630.       adorn_decl (decl, str);
  7631.       break;
  7632.  
  7633.     case ARRAY_TYPE:
  7634.     case FUNCTION_TYPE:
  7635.     case POINTER_TYPE:
  7636.       strcpy (buf, name);
  7637.       str = buf;
  7638.  
  7639.       /* this clause is done iteratively...rather than recursively */
  7640.       do
  7641.         {
  7642.           op = (is_complex_decl (TREE_TYPE (decl))
  7643.             ? TREE_TYPE (decl) : NULLT);
  7644.  
  7645.           adorn_decl (decl, str);
  7646.  
  7647.           /* we have a pointer to a function or array...(*)(), (*)[] */
  7648.           if (code == POINTER_TYPE
  7649.           && op && (TREE_CODE (op) == FUNCTION_TYPE
  7650.                 || TREE_CODE (op) == ARRAY_TYPE))
  7651.         {
  7652.           strcpy (tmpbuf, "(");
  7653.           strcat (tmpbuf, str);
  7654.           strcat (tmpbuf, ")");
  7655.           strcpy (str, tmpbuf);
  7656.         }
  7657.  
  7658.           decl = (is_complex_decl (TREE_TYPE (decl))
  7659.               ? TREE_TYPE (decl) : NULLT);
  7660.         }
  7661.       while (decl && (code = TREE_CODE (decl)));
  7662.  
  7663.       break;
  7664.  
  7665.     case IDENTIFIER_NODE:
  7666.       /* will only happen if we are processing a "raw" expr-decl. */
  7667.       strcpy (buf, IDENTIFIER_POINTER (decl));
  7668.       return buf;
  7669.     }
  7670.  
  7671.       return str;
  7672.     }
  7673.   else            /* we have an abstract declarator or a _DECL node */
  7674.     {
  7675.       strcpy (buf, name);
  7676.       return buf;
  7677.     }
  7678. }
  7679.  
  7680. static void
  7681. gen_declspecs (declspecs, buf, raw)
  7682.      tree declspecs;
  7683.      char *buf;
  7684.      int raw;
  7685. {
  7686.   if (raw)
  7687.     {
  7688.       tree chain;
  7689.  
  7690.       for (chain = nreverse (copy_list (declspecs));
  7691.        chain; chain = TREE_CHAIN (chain))
  7692.     {
  7693.       tree aspec = TREE_VALUE (chain);
  7694.  
  7695.       if (TREE_CODE (aspec) == IDENTIFIER_NODE)
  7696.         strcat (buf, IDENTIFIER_POINTER (aspec));
  7697.       else if (TREE_CODE (aspec) == RECORD_TYPE)
  7698.         {
  7699.           if (TYPE_NAME (aspec))
  7700.         {
  7701.           tree protocol_list = TYPE_PROTOCOL_LIST (aspec);
  7702.  
  7703.           if (! TREE_STATIC_TEMPLATE (aspec))
  7704.             strcat (buf, "struct ");
  7705.           strcat (buf, IDENTIFIER_POINTER (TYPE_NAME (aspec)));
  7706.  
  7707.           /* NEW!!! */
  7708.           if (protocol_list)
  7709.             {
  7710.               tree chain = protocol_list;
  7711.  
  7712.               strcat (buf, " <");
  7713.               while (chain)
  7714.             {
  7715.               strcat (buf, IDENTIFIER_POINTER (PROTOCOL_NAME (TREE_VALUE (chain))));
  7716.               chain = TREE_CHAIN (chain);
  7717.               if (chain)
  7718.                 strcat (buf, ", ");
  7719.             }
  7720.               strcat (buf, ">");
  7721.             }
  7722.         }
  7723.           else
  7724.         strcat (buf, "untagged struct");
  7725.         }
  7726.       else if (TREE_CODE (aspec) == UNION_TYPE)
  7727.         {
  7728.           if (TYPE_NAME (aspec))
  7729.         {
  7730.           if (! TREE_STATIC_TEMPLATE (aspec))
  7731.             strcat (buf, "union ");
  7732.           strcat (buf, IDENTIFIER_POINTER (TYPE_NAME (aspec)));
  7733.         }
  7734.           else
  7735.         strcat (buf, "untagged union");
  7736.         }
  7737.       else if (TREE_CODE (aspec) == ENUMERAL_TYPE)
  7738.         {
  7739.           if (TYPE_NAME (aspec))
  7740.         {
  7741.           if (! TREE_STATIC_TEMPLATE (aspec))
  7742.             strcat (buf, "enum ");
  7743.           strcat (buf, IDENTIFIER_POINTER (TYPE_NAME (aspec)));
  7744.         }
  7745.           else
  7746.         strcat (buf, "untagged enum");
  7747.         }
  7748.       else if (TREE_CODE (aspec) == TYPE_DECL && DECL_NAME (aspec))
  7749.         {
  7750.           strcat (buf, IDENTIFIER_POINTER (DECL_NAME (aspec)));
  7751.         }
  7752.       /* NEW!!! */
  7753.       else if (IS_ID (aspec))
  7754.         {
  7755.           tree protocol_list = TYPE_PROTOCOL_LIST (aspec);
  7756.  
  7757.           strcat (buf, "id");
  7758.           if (protocol_list)
  7759.         {
  7760.           tree chain = protocol_list;
  7761.  
  7762.           strcat (buf, " <");
  7763.           while (chain)
  7764.             {
  7765.               strcat (buf, IDENTIFIER_POINTER (PROTOCOL_NAME (TREE_VALUE (chain))));
  7766.               chain = TREE_CHAIN (chain);
  7767.               if (chain)
  7768.             strcat (buf, ", ");
  7769.             }
  7770.           strcat (buf, ">");
  7771.         }
  7772.         }
  7773.       if (TREE_CHAIN (chain))
  7774.         strcat (buf, " ");
  7775.     }
  7776.     }
  7777.   else
  7778.     {
  7779.     /* type qualifiers */
  7780.  
  7781.     if (TREE_READONLY (declspecs))
  7782.       strcat (buf, "const ");
  7783.     if (TYPE_VOLATILE (declspecs))
  7784.       strcat (buf, "volatile ");
  7785.  
  7786.     switch (TREE_CODE (declspecs))
  7787.       {
  7788.     /* type specifiers */
  7789.  
  7790.       case INTEGER_TYPE:    /* signed integer types */
  7791.     declspecs = TYPE_MAIN_VARIANT (declspecs);
  7792.  
  7793.         if (declspecs == short_integer_type_node) /* 's' */
  7794.           strcat (buf, "short int ");
  7795.         else if (declspecs == integer_type_node) /* 'i' */
  7796.           strcat (buf, "int ");
  7797.         else if (declspecs == long_integer_type_node) /* 'l' */
  7798.           strcat (buf, "long int ");
  7799.     else if (declspecs == long_long_integer_type_node) /* 'l' */
  7800.       strcat (buf, "long long int ");
  7801.         else if (declspecs == signed_char_type_node /* 'c' */
  7802.                || declspecs == char_type_node)
  7803.           strcat (buf, "char ");
  7804.  
  7805.         /* unsigned integer types */
  7806.  
  7807.         else if (declspecs == short_unsigned_type_node)    /* 'S' */
  7808.           strcat (buf, "unsigned short ");
  7809.         else if (declspecs == unsigned_type_node) /* 'I' */
  7810.           strcat (buf, "unsigned int ");
  7811.         else if (declspecs == long_unsigned_type_node) /* 'L' */
  7812.           strcat (buf, "unsigned long ");
  7813.     else if (declspecs == long_long_unsigned_type_node) /* 'L' */
  7814.       strcat (buf, "unsigned long long ");
  7815.         else if (declspecs == unsigned_char_type_node) /* 'C' */
  7816.           strcat (buf, "unsigned char ");
  7817.     break;
  7818.  
  7819.       case REAL_TYPE:        /* floating point types */
  7820.         declspecs = TYPE_MAIN_VARIANT (declspecs);
  7821.  
  7822.         if (declspecs == float_type_node) /* 'f' */
  7823.           strcat (buf, "float ");
  7824.         else if (declspecs == double_type_node)    /* 'd' */
  7825.           strcat (buf, "double ");
  7826.     else if (declspecs == long_double_type_node) /* 'd' */
  7827.           strcat (buf, "long double ");
  7828.     break;
  7829.  
  7830.       case RECORD_TYPE:
  7831.     if (TYPE_NAME (declspecs)
  7832.         && TREE_CODE (TYPE_NAME (declspecs)) == IDENTIFIER_NODE)
  7833.       {
  7834.         tree protocol_list = TYPE_PROTOCOL_LIST (declspecs);
  7835.  
  7836.         if (! TREE_STATIC_TEMPLATE (declspecs))
  7837.           strcat (buf, "struct ");
  7838.         strcat (buf, IDENTIFIER_POINTER (TYPE_NAME (declspecs)));
  7839.         /* NEW!!! */
  7840.         if (protocol_list)
  7841.           {
  7842.         tree chain = protocol_list;
  7843.  
  7844.         strcat (buf, " <");
  7845.         while (chain)
  7846.           {
  7847.             strcat (buf, IDENTIFIER_POINTER (PROTOCOL_NAME (TREE_VALUE (chain))));
  7848.             chain = TREE_CHAIN (chain);
  7849.             if (chain)
  7850.               strcat (buf, ", ");
  7851.           }
  7852.         strcat (buf, ">");
  7853.           }
  7854.       }
  7855.     else
  7856.       strcat (buf, "untagged struct");
  7857.  
  7858.     strcat (buf, " ");
  7859.     break;
  7860.  
  7861.       case UNION_TYPE:
  7862.     if (TYPE_NAME (declspecs)
  7863.         && TREE_CODE (TYPE_NAME (declspecs)) == IDENTIFIER_NODE)
  7864.       {
  7865.         strcat (buf, "union ");
  7866.         strcat (buf, IDENTIFIER_POINTER (TYPE_NAME (declspecs)));
  7867.         strcat (buf, " ");
  7868.       }
  7869.     else
  7870.       strcat (buf, "untagged union ");
  7871.     break;
  7872.  
  7873.       case ENUMERAL_TYPE:
  7874.     if (TYPE_NAME (declspecs)
  7875.         && TREE_CODE (TYPE_NAME (declspecs)) == IDENTIFIER_NODE)
  7876.       {
  7877.         strcat (buf, "enum ");
  7878.         strcat (buf, IDENTIFIER_POINTER (TYPE_NAME (declspecs)));
  7879.         strcat (buf, " ");
  7880.       }
  7881.     else
  7882.       strcat (buf, "untagged enum ");
  7883.     break;
  7884.  
  7885.       case VOID_TYPE:
  7886.     strcat (buf, "void ");
  7887.         break;
  7888.  
  7889.     /* NEW!!! */
  7890.       case POINTER_TYPE:
  7891.     {
  7892.       tree protocol_list = TYPE_PROTOCOL_LIST (declspecs);
  7893.  
  7894.       strcat (buf, "id");
  7895.       if (protocol_list)
  7896.         {
  7897.           tree chain = protocol_list;
  7898.  
  7899.           strcat (buf, " <");
  7900.           while (chain)
  7901.         {
  7902.           strcat (buf, IDENTIFIER_POINTER (PROTOCOL_NAME (TREE_VALUE (chain))));
  7903.           chain = TREE_CHAIN (chain);
  7904.           if (chain)
  7905.             strcat (buf, ", ");
  7906.         }
  7907.           strcat (buf, ">");
  7908.         }
  7909.     }
  7910.       }
  7911.     }
  7912. }
  7913.  
  7914. static char *
  7915. gen_declaration (atype_or_adecl, buf)
  7916.      tree atype_or_adecl;
  7917.      char *buf;
  7918. {
  7919.   char declbuf[256];
  7920.  
  7921.   if (TREE_CODE (atype_or_adecl) == TREE_LIST)
  7922.     {
  7923.       tree declspecs;    /* "identifier_node", "record_type" */
  7924.       tree declarator;    /* "array_ref", "indirect_ref", "call_expr"... */
  7925.  
  7926.       /* we have a "raw", abstract declarator (typename) */
  7927.       declarator = TREE_VALUE (atype_or_adecl);
  7928.       declspecs  = TREE_PURPOSE (atype_or_adecl);
  7929.  
  7930.       gen_declspecs (declspecs, buf, 1);
  7931.       if (declarator)
  7932.     {
  7933.       strcat (buf, " ");
  7934.       strcat (buf, gen_declarator (declarator, declbuf, ""));
  7935.     }
  7936.     }
  7937.   else
  7938.     {
  7939.       tree atype;
  7940.       tree declspecs;    /* "integer_type", "real_type", "record_type"... */
  7941.       tree declarator;    /* "array_type", "function_type", "pointer_type". */
  7942.  
  7943.       if (TREE_CODE (atype_or_adecl) == FIELD_DECL
  7944.       || TREE_CODE (atype_or_adecl) == PARM_DECL
  7945.       || TREE_CODE (atype_or_adecl) == FUNCTION_DECL)
  7946.     atype = TREE_TYPE (atype_or_adecl);
  7947.       else
  7948.     atype = atype_or_adecl;    /* assume we have a *_type node */
  7949.  
  7950.       if (is_complex_decl (atype))
  7951.     {
  7952.       tree chain;
  7953.  
  7954.       /* get the declaration specifier...it is at the end of the list */
  7955.       declarator = chain = atype;
  7956.       do
  7957.         chain = TREE_TYPE (chain); /* not TREE_CHAIN (chain); */
  7958.       while (is_complex_decl (chain));
  7959.       declspecs = chain;
  7960.     }
  7961.       else
  7962.     {
  7963.       declspecs = atype;
  7964.       declarator = NULLT;
  7965.     }
  7966.  
  7967.       gen_declspecs (declspecs, buf, 0);
  7968.  
  7969.       if (TREE_CODE (atype_or_adecl) == FIELD_DECL
  7970.       || TREE_CODE (atype_or_adecl) == PARM_DECL
  7971.       || TREE_CODE (atype_or_adecl) == FUNCTION_DECL)
  7972.     {
  7973.       char *decl_name = (DECL_NAME (atype_or_adecl)
  7974.                  ? IDENTIFIER_POINTER (DECL_NAME (atype_or_adecl))
  7975.                  : "");
  7976.  
  7977.       if (declarator)
  7978.         {
  7979.           strcat (buf, " ");
  7980.           strcat (buf, gen_declarator (declarator, declbuf, decl_name));
  7981.         }
  7982.       else if (decl_name[0])
  7983.         {
  7984.           strcat (buf, " ");
  7985.           strcat (buf, decl_name);
  7986.         }
  7987.     }
  7988.       else if (declarator)
  7989.     {
  7990.       strcat (buf, " ");
  7991.       strcat (buf, gen_declarator (declarator, declbuf, ""));
  7992.     }
  7993.     }
  7994.   return buf;
  7995. }
  7996.  
  7997. #define RAW_TYPESPEC(meth) (TREE_VALUE (TREE_PURPOSE (TREE_TYPE (meth))))
  7998.  
  7999. static char *
  8000. gen_method_decl (method, buf)
  8001.      tree method;
  8002.      char *buf;
  8003. {
  8004.   tree chain;
  8005.  
  8006.   if (RAW_TYPESPEC (method) != objc_object_reference)
  8007.     {
  8008.       strcpy (buf, "(");
  8009.       gen_declaration (TREE_TYPE (method), buf);
  8010.       strcat (buf, ")");
  8011.     }
  8012.  
  8013.   chain = METHOD_SEL_ARGS (method);
  8014.   if (chain)
  8015.     {                /* we have a chain of keyword_decls */
  8016.       do
  8017.         {
  8018.       if (KEYWORD_KEY_NAME (chain))
  8019.         strcat (buf, IDENTIFIER_POINTER (KEYWORD_KEY_NAME (chain)));
  8020.  
  8021.       strcat (buf, ":");
  8022.       if (RAW_TYPESPEC (chain) != objc_object_reference)
  8023.         {
  8024.           strcat (buf, "(");
  8025.           gen_declaration (TREE_TYPE (chain), buf);
  8026.           strcat (buf, ")");
  8027.         }
  8028.       strcat (buf, IDENTIFIER_POINTER (KEYWORD_ARG_NAME (chain)));
  8029.       if ((chain = TREE_CHAIN (chain)))
  8030.         strcat (buf, " ");
  8031.         }
  8032.       while (chain);
  8033.  
  8034.       if (METHOD_ADD_ARGS (method) == (tree)1)
  8035.         strcat (buf, ", ...");
  8036.       else if (METHOD_ADD_ARGS (method))
  8037.         {
  8038.       /* we have a tree list node as generate by get_parm_info.  */
  8039.       chain  = TREE_PURPOSE (METHOD_ADD_ARGS (method));
  8040.           /* know we have a chain of parm_decls */
  8041.           while (chain)
  8042.             {
  8043.           strcat (buf, ", ");
  8044.           gen_declaration (chain, buf);
  8045.           chain = TREE_CHAIN (chain);
  8046.             }
  8047.     }
  8048.     }
  8049.   else                /* we have a unary selector */
  8050.     strcat (buf, IDENTIFIER_POINTER (METHOD_SEL_NAME (method)));
  8051.  
  8052.   return buf;
  8053. }
  8054.  
  8055. /* debug info...  */
  8056.  
  8057. static void
  8058. dump_interface (fp, chain)
  8059.      FILE *fp;
  8060.      tree chain;
  8061. {
  8062.   char *buf = (char *)xmalloc (256);
  8063.   char *my_name = IDENTIFIER_POINTER (CLASS_NAME (chain));
  8064.   tree ivar_decls = CLASS_RAW_IVARS (chain);
  8065.   tree nst_methods = CLASS_NST_METHODS (chain);
  8066.   tree cls_methods = CLASS_CLS_METHODS (chain);
  8067.  
  8068.   fprintf (fp, "\n@interface %s", my_name);
  8069.  
  8070.   if (CLASS_SUPER_NAME (chain))
  8071.     {
  8072.       char *super_name = IDENTIFIER_POINTER (CLASS_SUPER_NAME (chain));
  8073.       fprintf (fp, " : %s\n", super_name);
  8074.     }
  8075.   else
  8076.     fprintf (fp, "\n");
  8077.  
  8078.   if (ivar_decls)
  8079.     {
  8080.       fprintf (fp, "{\n");
  8081.       do
  8082.     {
  8083.       bzero (buf, 256);
  8084.       fprintf (fp, "\t%s;\n", gen_declaration (ivar_decls, buf));
  8085.       ivar_decls = TREE_CHAIN (ivar_decls);
  8086.     }
  8087.       while (ivar_decls);
  8088.       fprintf (fp, "}\n");
  8089.     }
  8090.  
  8091.   while (nst_methods)
  8092.     {
  8093.       bzero (buf, 256);
  8094.       fprintf (fp, "- %s;\n", gen_method_decl (nst_methods, buf));
  8095.       nst_methods = TREE_CHAIN (nst_methods);
  8096.     }
  8097.  
  8098.   while (cls_methods)
  8099.     {
  8100.       bzero (buf, 256);
  8101.       fprintf (fp, "+ %s;\n", gen_method_decl (cls_methods, buf));
  8102.       cls_methods = TREE_CHAIN (cls_methods);
  8103.     }
  8104.   fprintf (fp, "\n@end");
  8105. }
  8106.  
  8107. static void
  8108. init_objc ()
  8109. {
  8110.   /* Add the special tree codes of Objective C to the tables.  */
  8111.  
  8112. #ifdef OBJCPLUS
  8113. #define LAST_CODE LAST_CPLUS_TREE_CODE
  8114. #else
  8115. #define LAST_CODE LAST_AND_UNUSED_TREE_CODE
  8116. #endif
  8117.  
  8118.   gcc_obstack_init (&util_obstack);
  8119.   util_firstobj = (char *) obstack_finish (&util_obstack);
  8120.  
  8121.   tree_code_type
  8122.     = (char **) xrealloc (tree_code_type,
  8123.               sizeof (char *) * LAST_OBJC_TREE_CODE);
  8124.   tree_code_length
  8125.     = (int *) xrealloc (tree_code_length,
  8126.             sizeof (int) * LAST_OBJC_TREE_CODE);
  8127.   tree_code_name
  8128.     = (char **) xrealloc (tree_code_name,
  8129.               sizeof (char *) * LAST_OBJC_TREE_CODE);
  8130.   bcopy (objc_tree_code_type,
  8131.      tree_code_type + (int) LAST_CODE,
  8132.      (((int) LAST_OBJC_TREE_CODE - (int) LAST_CODE)
  8133.       * sizeof (char *)));
  8134.   bcopy (objc_tree_code_length,
  8135.      tree_code_length + (int) LAST_CODE,
  8136.      (((int) LAST_OBJC_TREE_CODE - (int) LAST_CODE)
  8137.       * sizeof (int)));
  8138.   bcopy (objc_tree_code_name,
  8139.      tree_code_name + (int) LAST_CODE,
  8140.      (((int) LAST_OBJC_TREE_CODE - (int) LAST_CODE)
  8141.       * sizeof (char *)));
  8142.  
  8143.   errbuf = (char *)xmalloc (BUFSIZE);
  8144.   hash_init ();
  8145.   synth_module_prologue ();
  8146. }
  8147.  
  8148. static void
  8149. finish_objc ()
  8150. {
  8151.   struct imp_entry *impent;
  8152.   tree chain;
  8153.   /* The internally generated initializers appear to have missing braces.
  8154.      Don't warn about this.  */
  8155.   int save_warn_missing_braces = warn_missing_braces;
  8156.   warn_missing_braces = 0;
  8157.  
  8158.   if (objc_implementation_context)
  8159.     {
  8160.       warning ("`@end' missing in implementation context");
  8161.       finish_class (objc_implementation_context);
  8162.       objc_ivar_chain = NULL_TREE;
  8163.       objc_implementation_context = NULL_TREE;
  8164.     }
  8165.  
  8166.   generate_forward_declaration_to_string_table ();
  8167.  
  8168. #ifdef OBJC_PROLOGUE
  8169.   OBJC_PROLOGUE;
  8170. #endif
  8171.  
  8172.   if (implementation_context || class_names_chain
  8173.       || meth_var_names_chain || meth_var_types_chain || sel_ref_chain)
  8174.     generate_objc_symtab_decl ();
  8175.  
  8176.   for (impent = imp_list; impent; impent = impent->next)
  8177.     {
  8178.       implementation_context = impent->imp_context;
  8179.       implementation_template = impent->imp_template;
  8180.  
  8181.       UOBJC_CLASS_decl = impent->class_decl;
  8182.       UOBJC_METACLASS_decl = impent->meta_decl;
  8183.  
  8184.       if (TREE_CODE (implementation_context) == CLASS_IMPLEMENTATION_TYPE)
  8185.     {
  8186.       /* all of the following reference the string pool...  */
  8187.       generate_ivar_lists ();
  8188.       generate_dispatch_tables ();
  8189.       generate_shared_structures ();
  8190.     }
  8191.       else
  8192.     {
  8193.       generate_dispatch_tables ();
  8194.       generate_category (implementation_context);
  8195.     }
  8196.     }
  8197.  
  8198.   /* If we are using an array of selectors, we must always
  8199.      finish up the array decl even if no selectors were used.  */
  8200.   if (! flag_next_runtime || sel_ref_chain)
  8201.     build_selector_translation_table ();
  8202.  
  8203.   if (protocol_chain)
  8204.     generate_protocols ();
  8205.  
  8206.   if (implementation_context || class_names_chain
  8207.       || meth_var_names_chain || meth_var_types_chain || sel_ref_chain)
  8208.     {
  8209.       /* Arrange for Objc data structures to be initialized at run time.  */
  8210.       char *init_name = build_module_descriptor ();
  8211.       if (init_name)
  8212.     assemble_constructor (init_name);
  8213.     }
  8214.  
  8215.   /* dump the class references...this forces the appropriate classes
  8216.      to be linked into the executable image, preserving unix archive
  8217.      semantics...this can be removed when we move to a more dynamically
  8218.      linked environment.  */
  8219.   for (chain = cls_ref_chain; chain; chain = TREE_CHAIN (chain))
  8220.     {
  8221.       handle_class_ref (chain);
  8222.       if (TREE_PURPOSE (chain))
  8223.     generate_classref_translation_entry (chain);
  8224.     }
  8225.  
  8226.   for (impent = imp_list; impent; impent = impent->next)
  8227.     handle_impent (impent);
  8228.  
  8229.   /* dump the string table last */
  8230.  
  8231.   generate_strings ();
  8232.  
  8233.   if (flag_gen_declaration)
  8234.     {
  8235.       add_class (implementation_context);
  8236.       dump_interface (gen_declaration_file, implementation_context);
  8237.     }
  8238.  
  8239.   if (warn_selector)
  8240.     {
  8241.       int slot;
  8242.       hash hsh;
  8243.  
  8244.       /* Run through the selector hash tables and print a warning for any
  8245.          selector which has multiple methods. */
  8246.  
  8247.       for (slot = 0; slot < SIZEHASHTABLE; slot++)
  8248.     for (hsh = cls_method_hash_list[slot]; hsh; hsh = hsh->next)
  8249.       if (hsh->list)
  8250.         {
  8251.           tree meth = hsh->key;
  8252.           char type = (TREE_CODE (meth) == INSTANCE_METHOD_DECL
  8253.                ? '-' : '+');
  8254.           attr loop;
  8255.  
  8256.           warning ("potential selector conflict for method `%s'",
  8257.                IDENTIFIER_POINTER (METHOD_SEL_NAME (meth)));
  8258.           warn_with_method ("found", type, meth);
  8259.           for (loop = hsh->list; loop; loop = loop->next)
  8260.         warn_with_method ("found", type, loop->value);
  8261.         }
  8262.  
  8263.       for (slot = 0; slot < SIZEHASHTABLE; slot++)
  8264.     for (hsh = nst_method_hash_list[slot]; hsh; hsh = hsh->next)
  8265.       if (hsh->list)
  8266.         {
  8267.           tree meth = hsh->key;
  8268.           char type = (TREE_CODE (meth) == INSTANCE_METHOD_DECL
  8269.                ? '-' : '+');
  8270.           attr loop;
  8271.  
  8272.           warning ("potential selector conflict for method `%s'",
  8273.                IDENTIFIER_POINTER (METHOD_SEL_NAME (meth)));
  8274.           warn_with_method ("found", type, meth);
  8275.           for (loop = hsh->list; loop; loop = loop->next)
  8276.         warn_with_method ("found", type, loop->value);
  8277.         }
  8278.     }
  8279.  
  8280.   warn_missing_braces = save_warn_missing_braces;
  8281. }
  8282.  
  8283. /* Subroutines of finish_objc.  */
  8284.  
  8285. static void
  8286. generate_classref_translation_entry (chain)
  8287.     tree chain;
  8288. {
  8289.   tree expr, name, decl_specs, decl, sc_spec;
  8290.   tree type;
  8291.  
  8292.   type = TREE_TYPE (TREE_PURPOSE (chain));
  8293.  
  8294.   expr = add_objc_string (TREE_VALUE (chain), class_names);
  8295.   expr = build_c_cast (type, expr); /* cast! */
  8296.  
  8297.   name = DECL_NAME (TREE_PURPOSE (chain));
  8298.  
  8299.   sc_spec = build_tree_list (NULLT, ridpointers[(int) RID_STATIC]);
  8300.  
  8301.   /* static struct objc_class * _OBJC_CLASS_REFERENCES_n = ...; */
  8302.   decl_specs = tree_cons (NULLT, type, sc_spec);
  8303.  
  8304.   /* the `decl' that is returned from start_decl is the one that we
  8305.      forward declared in `build_class_reference'.  */
  8306.   decl = start_decl (name, decl_specs, 1);
  8307.   end_temporary_allocation ();
  8308.   finish_decl (decl, expr, NULLT);
  8309.   return;
  8310. }
  8311.  
  8312. static void
  8313. handle_class_ref (chain)
  8314.      tree chain;
  8315. {
  8316.   char *name = IDENTIFIER_POINTER (TREE_VALUE (chain));
  8317.   tree decl;
  8318.   char *string = (char *) alloca (strlen (name) + 30);
  8319.   tree exp;
  8320.  
  8321.   sprintf (string, "*%sobjc_class_name_%s", (flag_next_runtime ?".":"__"), name);
  8322.  
  8323. #ifdef DECLARE_UNRESOLVED_REFERENCE
  8324.   if (flag_next_runtime)
  8325.     {
  8326.       DECLARE_UNRESOLVED_REFERENCE(string);
  8327.       return;
  8328.     }
  8329. #endif
  8330.   /* Make a decl for this name, so we can use its address in a tree.  */
  8331.   decl = build_decl (VAR_DECL, get_identifier (string), char_type_node);
  8332.   DECL_EXTERNAL (decl) = 1;
  8333.   TREE_PUBLIC (decl) = 1;
  8334.  
  8335.   pushdecl (decl);
  8336.   rest_of_decl_compilation (decl, 0, 0, 0);
  8337.  
  8338.   exp = build1 (ADDR_EXPR, string_type_node, decl);
  8339.  
  8340.   /* Select text segment */
  8341.   text_section ();
  8342.  
  8343.   /* Align the section properly.  */
  8344.   assemble_constant_align (exp);
  8345.  
  8346.   /* Inform the assembler about this new external thing.  */
  8347.   assemble_external (decl);
  8348.  
  8349.   /* Output a constant to reference this address.  */
  8350.   output_constant (exp, int_size_in_bytes (string_type_node));
  8351. }
  8352.  
  8353. static void
  8354. handle_impent (impent)
  8355.      struct imp_entry *impent;
  8356. {
  8357.   char *string;
  8358.   implementation_context = impent->imp_context;
  8359.   implementation_template = impent->imp_template;
  8360.  
  8361.   if (TREE_CODE (impent->imp_context) == CLASS_IMPLEMENTATION_TYPE)
  8362.     {
  8363.       char *class_name = IDENTIFIER_POINTER (CLASS_NAME (impent->imp_context));
  8364.       
  8365.       string = (char *) malloc (strlen (class_name) + 30);
  8366.       sprintf (string, "*%sobjc_class_name_%s",
  8367.            (flag_next_runtime ? "." : "__"), class_name);
  8368.     }
  8369.   else if (TREE_CODE (impent->imp_context) == CATEGORY_IMPLEMENTATION_TYPE)
  8370.     {
  8371.       char *class_name = IDENTIFIER_POINTER (CLASS_NAME (impent->imp_context));
  8372.       char *class_super_name
  8373.     = IDENTIFIER_POINTER (CLASS_SUPER_NAME (impent->imp_context));
  8374.       
  8375.       string = (char *) malloc (strlen (class_name)
  8376.                 + strlen (class_super_name) + 30);
  8377.  
  8378.       /* Do the same for categories.  Even though no references to these
  8379.      symbols are generated automatically by the compiler, it gives
  8380.      you a handle to pull them into an archive by hand. */
  8381.       sprintf (string, "*%sobjc_category_name_%s_%s",
  8382.            (flag_next_runtime ? "." : "__"), class_name, class_super_name);
  8383.     }
  8384.   else
  8385.     return;
  8386.  
  8387. #ifdef DECLARE_CLASS_REFERENCE
  8388.   if (flag_next_runtime)
  8389.     {
  8390.       DECLARE_CLASS_REFERENCE (string);
  8391.     }
  8392. #else
  8393.   text_section ();
  8394.   assemble_global (string);
  8395.   assemble_align (UNITS_PER_WORD);
  8396.   assemble_label (string);
  8397.   assemble_zeros (UNITS_PER_WORD);
  8398. #endif
  8399.  
  8400.   free (string);
  8401. }
  8402.  
  8403. #ifdef DEBUG
  8404.  
  8405. static void
  8406. objc_debug (fp)
  8407.      FILE *fp;
  8408. {
  8409.   char *buf = (char *)xmalloc (256);
  8410.  
  8411.   {                /* dump function prototypes */
  8412.     tree loop = UOBJC_MODULES_decl;
  8413.  
  8414.     fprintf (fp, "\n\nfunction prototypes:\n");
  8415.     while (loop)
  8416.       {
  8417.     if (TREE_CODE (loop) == FUNCTION_DECL && DECL_INITIAL (loop))
  8418.       {
  8419.         /* we have a function definition - generate prototype */
  8420.             bzero (errbuf, BUFSIZE);
  8421.         gen_declaration (loop, errbuf);
  8422.         fprintf (fp, "%s;\n", errbuf);
  8423.       }
  8424.     loop = TREE_CHAIN (loop);
  8425.       }
  8426.   }
  8427.   {                /* dump global chains */
  8428.     tree loop;
  8429.     int i, index = 0, offset = 0;
  8430.     hash hashlist;
  8431.  
  8432.     for (i = 0; i < SIZEHASHTABLE; i++)
  8433.       {
  8434.     if (hashlist = nst_method_hash_list[i])
  8435.       {
  8436.         fprintf (fp, "\n\nnst_method_hash_list[%d]:\n", i);
  8437.         do
  8438.           {
  8439.         bzero (buf, 256);
  8440.         fprintf (fp, "-%s;\n", gen_method_decl (hashlist->key, buf));
  8441.         hashlist = hashlist->next;
  8442.           }
  8443.         while (hashlist);
  8444.       }
  8445.       }
  8446.     for (i = 0; i < SIZEHASHTABLE; i++)
  8447.       {
  8448.     if (hashlist = cls_method_hash_list[i])
  8449.       {
  8450.         fprintf (fp, "\n\ncls_method_hash_list[%d]:\n", i);
  8451.         do
  8452.           {
  8453.         bzero (buf, 256);
  8454.         fprintf (fp, "-%s;\n", gen_method_decl (hashlist->key, buf));
  8455.         hashlist = hashlist->next;
  8456.           }
  8457.         while (hashlist);
  8458.       }
  8459.       }
  8460.     fprintf (fp, "\nsel_refdef_chain:\n");
  8461.     for (loop = sel_refdef_chain; loop; loop = TREE_CHAIN (loop))
  8462.       {
  8463.     fprintf (fp, "(index: %4d offset: %4d) %s\n", index, offset,
  8464.          IDENTIFIER_POINTER (TREE_VALUE (loop)));
  8465.     index++;
  8466.     /* add one for the '\0' character */
  8467.     offset += IDENTIFIER_LENGTH (TREE_VALUE (loop)) + 1;
  8468.       }
  8469.     fprintf (fp, "\n (max_selector_index: %4d.\n", max_selector_index);
  8470.   }
  8471. }
  8472. #endif
  8473.  
  8474. #ifndef OBJCPLUS
  8475.  
  8476. void
  8477. print_lang_statistics ()
  8478. {
  8479. }
  8480.  
  8481. #endif
  8482.  
  8483.  
  8484.  
  8485.